mirror of
https://github.com/seemueller-io/cluster.git
synced 2025-09-08 22:56:46 +00:00
35 lines
761 B
JSON
35 lines
761 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"es2018"
|
|
],
|
|
"module": "CommonJS",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"stripInternal": true,
|
|
"target": "ES2018",
|
|
"incremental": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"cdktf.out"
|
|
]
|
|
} |