-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·52 lines (52 loc) · 1.88 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
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@app/*": ["packages/app/src/*"],
"@core/*": ["packages/app/node_modules/@flex-development/kustomzcore/*"],
"@design/*": ["node_modules/@flex-development/kustomzdesign/dist/*"],
"@flex-development/json/*": [
"node_modules/@flex-development/json/dist/*"
],
"@kapi/endpoints/*": ["packages/api/api/*"],
"@kapi/tests/fixtures/*": ["packages/api/__tests__/__fixtures__/*"],
"@kapi/tests/*": ["packages/api/__tests__/*"],
"@kapi/*": ["packages/api/lib/*"],
"@kustomzcore/tests/*": ["packages/core/__tests__/*"],
"@kustomzcore/*": ["packages/core/src/*"],
"@mdx-js/react": ["node_modules/@mdx-js/react/dist/esm"],
"@system": ["packages/system/src/index.ts"],
"@system/tests/fixtures/*": ["packages/system/__tests__/__fixtures__/*"],
"@system/tests/*": ["packages/system/__tests__/*"],
"@system/*": ["packages/system/src/*"],
"@tests/*": ["__tests__/*"],
"react-hanger/*": ["node_modules/react-hanger/esm/*"],
"react-use/*": ["node_modules/react-use/esm/*"]
},
"preserveConstEnums": true,
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"strict": true
},
"exclude": ["node_modules"]
}