29 lines
711 B
JSON
29 lines
711 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"incremental": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2022",
|
|
},
|
|
"exclude": ["**/*.spec.ts", "dist", "test-setup.ts"],
|
|
"references": [
|
|
{
|
|
"path": "./packages/scheduler"
|
|
}
|
|
]
|
|
}
|