nest-trpc-prisma-starter/packages/database/tsconfig.json

26 lines
486 B
JSON
Raw Permalink Normal View History

2024-04-25 18:12:44 +00:00
{
"compilerOptions": {
"incremental": true,
"target": "es2021",
"experimentalDecorators": true,
"module": "CommonJS",
"paths": {},
"strict": true,
"noImplicitAny": false,
"declaration": true,
"outDir": "./dist",
"removeComments": true,
"sourceMap": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"./zod",
"./global.ts"
],
"exclude": [
"dist"
]
}