mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-17 09:16:38 +08:00
31 lines
799 B
JSON
31 lines
799 B
JSON
{
|
|
"extends": "./tsconfig.paths.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2022",
|
|
"sourceMap": false,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/modules/draw/generation/**/*.ts",
|
|
"src/modules/draw/generation/**/*.js"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|