mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
30 lines
777 B
JSON
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"]
|
|
}
|