mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-04 00:20:45 +00:00
bbe6f9dc27
* Add ststem info to user options extensions - Add UIWindowSystemInfo, add ui sections for client and server, add basic getClientinfo function * Fix typo * Replace accidentally deleted es.js file * Refactor client information to be consistant with project standard * Complete Client information in ststem information window * Remove console logs * Add basic api functionality for getting server system information * Structure return data from system server information endpoint | Add copyright to UIWindowSystemInfo * Add function to format server system api data | Add loading element to server container while waiting for data | Complete System Information * fix: disallow non admin for backend + move to extensions --------- Co-authored-by: Daniel Salazar <daniel.salazar@puter.com>
29 lines
526 B
JSON
29 lines
526 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"node_modules",
|
|
"dist",
|
|
"*.js"
|
|
]
|
|
}
|