mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-03 19:50:22 -06:00
29 lines
563 B
JSON
29 lines
563 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"allowJs": true,
|
|
"rootDir": "./",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.d.ts",
|
|
"./**/*.d.mts",
|
|
"./**/*.d.cts"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |