mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-03 16:10:31 +00:00
e75ccb0a41
* feat: root level kv accesses, and installed app listing * fix: revert server health check
28 lines
525 B
JSON
28 lines
525 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"
|
|
]
|
|
} |