-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·39 lines (39 loc) · 1.05 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
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "dist",
"paths": {
"@": ["src/index.ts"],
"@/*": ["src/*"],
"@mango": ["src/index.ts"],
"@mango/*": ["src/*"],
"@tests/fixtures/*": ["__tests__/__fixtures__/*"],
"@tests/*": ["__tests__/*"]
},
"preserveConstEnums": true,
"pretty": true,
"resolveJsonModule": true,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"strict": true,
"target": "es2018"
},
"exclude": ["node_modules"]
}