-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
32 lines (32 loc) · 930 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"lib": ["es2018", "ESNext.AsyncIterable"],
"allowJs": true,
"checkJs": true,
"removeComments": true,
"resolveJsonModule": true,
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"inlineSourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"typeRoots": ["./node_modules/@types"],
"isolatedModules": true
},
"exclude": ["node_modules", "**/node_modules/*", "cdk.out"]
}