nest-trpc-prisma-starter/apps/server/tsconfig.json
2024-04-26 02:12:44 +08:00

29 lines
720 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2021",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": ".",
"module": "CommonJS",
"paths": {
"@test/*": ["./test/*"],
"@server/*": ["../../apps/server/src/*"]
},
"resolveJsonModule": true,
"types": ["vitest/globals"],
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"noImplicitAny": false,
"declaration": true,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"]
}