mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-06 01:20:41 +00:00
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"rootDir": ".",
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@heyputer/backend": [
|
|
"src/backend/exports.ts"
|
|
],
|
|
"@heyputer/backend/src/*": [
|
|
"src/backend/*"
|
|
],
|
|
"@heyputer/backend/*": [
|
|
"src/backend/*"
|
|
]
|
|
},
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noCheck": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"removeComments": true,
|
|
"noEmit": false,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": true
|
|
},
|
|
"include": [
|
|
"src/backend/**/*",
|
|
"extensions/**/*"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.test.mts",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.mts",
|
|
"**/tests/**",
|
|
"**/node_modules/**",
|
|
"dist/**",
|
|
"volatile/**",
|
|
"extensions/**/node_modules/**"
|
|
]
|
|
}
|