-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
50 lines (50 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"target": "es5",
"moduleResolution": "node",
"allowJs": false,
"noEmit": false,
"strict": false,
"isolatedModules": false,
"esModuleInterop": true,
"module": "commonjs",
"outDir": "dist",
"declaration": false,
"checkJs": false,
"removeComments": false,
"lib": ["es5", "es6", "es7", "es2017", "dom"],
"typeRoots": ["node_modules/@types", "./types"],
"sourceMap": true,
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@components": ["./src/components"],
"@components/*": ["./src/components/*"],
"@config": ["./src/config"],
"@config/*": ["./src/config/*"],
"@props": ["./src/props"],
"@props/*": ["./src/props/*"],
"@propTypes": ["./src/prop-types"],
"@propTypes/*": ["./src/prop-types/*"],
"@root": ["./"],
"@root/*": ["./*"],
"@sharedProps": ["./src/shared-props"],
"@sharedProps/*": ["./src/shared-props/*"],
"@vars": ["./src/variables"],
"@vars/*": ["./src/variables/*"],
"@utils": ["./src/utilities"],
"@utils/*": ["./src/utilities/*"]
},
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules/**", "build", "scripts"]
}