mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-30 17:50:00 -06:00
27 lines
523 B
JSON
27 lines
523 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"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"**/test/**",
|
|
"**/tests/**",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |