-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
35 lines (35 loc) · 912 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
33
34
35
{
"compilerOptions": {
"target": "ES2015",
"lib": ["ESNext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./",
"module": "ESNext",
"moduleResolution": "node",
"isolatedModules": true,
"noEmit": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"pretty": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"paths": {
"@core/*": ["src/core/*"],
"@features/*": ["src/features/*"]
}
},
"include": ["src"]
}