mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 23:13:08 -04:00
23 lines
630 B
JSON
23 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"target":"ES2018",
|
|
"module": "commonjs",
|
|
"lib": ["es2016", "es2017.object", "es2017.string"],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization":false,
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"exclude": ["cdk.out"]
|
|
}
|