-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsconfig.json
55 lines (55 loc) · 1.51 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"include": [
"src"
],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": "src",
"lib": [
"DOM",
"DOM.Iterable",
"ES2019",
"ES2020.Promise"
],
"module": "ES6",
"target": "ES6",
"outDir": "dist/es",
"rootDir": "src",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"declarationDir": "./dist/es",
"downlevelIteration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"importsNotUsedAsValues": "preserve",
"jsx": "react",
"paths": {
"@cdk/*": ["./django-spa/cdk/*"],
"~types": ["./django-spa/types"],
"@plugins/*": ["./django-spa/plugins/*"],
"@components/*": ["./django-spa/components/*"],
"@aspects/*": ["./django-spa/aspects/*"],
"@layouts/*": ["./django-spa/layouts/*"],
"@presenters/*": ["./django-spa/presenters/*"],
"@smart-components/*": ["./django-spa/smart-components/*"],
"@utils/*": ["./django-spa/utils/*"],
"@test-utils/*": ["./django-spa/test-utils/*"],
"@features": ["./features"]
},
"strict": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"incremental": true
}
}