-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
36 lines (36 loc) · 1.06 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
{
"compilerOptions": {
"sourceRoot": "src",
"lib": ["es6", "es7", "dom"],
"jsx": "react",
"target": "es5",
"module": "esnext",
"moduleResolution": "node",
"sourceMap": true,
"allowJs": true,
"outDir": "build/dist",
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"removeComments": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"allowUnusedLabels": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"x-api/*": ["src/api/*"],
"x-components/*": ["src/components/*"],
"x-containers/*": ["src/containers/*"],
"x-models/*": ["src/models/*"],
"x-stores/*": ["src/stores/*"],
"x-services/*": ["src/services/*"]
}
},
"include": ["**/*.js", "**/*.ts", "**/*.tsx"],
"exclude": ["assets", "node_modules", "dist", "build", "test", "dev-config", "ssr", "stories"]
}