-
Notifications
You must be signed in to change notification settings - Fork 43
/
tsconfig.json
35 lines (35 loc) · 1.07 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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "esnext",
"target": "esnext",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"removeComments": false,
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"SmartComponents": ["./src/SmartComponents"],
"SmartComponents/*": ["./src/SmartComponents/*"],
"PresentationalComponents": ["./src/PresentationalComponents"],
"PresentationalComponents/*": ["./src/PresentationalComponents/*"],
"Mutations": ["./src/Mutations"],
"Mutations/*": ["./src/Mutations/*"],
"Utilities/*": ["./src/Utilities/*"],
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx"
]
}