nest-admin-main/tsconfig.json
lqs 817d3102b1
Some checks failed
Build Stable Image / docker (push) Has been cancelled
Sync To Gitee / repo-sync (push) Has been cancelled
first commit
2024-09-11 16:32:57 +08:00

28 lines
693 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "ES2022",
"lib": ["ESNext"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": "./",
"module": "commonjs",
"paths": {
"~/*": ["src/*"]
},
"strictBindCallApply": false,
"strictNullChecks": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"declaration": true,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": false,
"skipLibCheck": true
},
"exclude": ["node_modules", "scripts", "dist"]
}