Files
vercel__workflow/workbench/nest/tsconfig.json
2026-01-26 13:31:22 -08:00

30 lines
777 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"esModuleInterop": true,
"paths": {
"@repo/*": ["../../*"]
}
},
"plugins": [{ "name": "workflow" }],
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", ".nestjs"]
}