-
Notifications
You must be signed in to change notification settings - Fork 61
/
tsconfig.json
32 lines (31 loc) · 934 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
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "dom"],
"sourceMap": true,
"baseUrl": ".",
"jsx": "react",
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"rootDirs": ["/src", "/test", "/mock", "./typings"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowJs": true,
"experimentalDecorators": true,
"maxNodeModuleJsDepth": 3,
// "strict": false,
"paths": {
"components": ["./src/components/index.ts"],
"components/*": ["./src/components/*"],
"models": ["./src/models/index.ts"],
"utils/*": ["./src/utils/*"],
"package": ["./package.json"]
},
"noImplicitAny": false
},
"include": ["src/components/*"],
"exclude": ["**/node_modules/*", "scripts", "webpack", "jest", "dist"]
}