-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 1005 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
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"components/*": ["components/*", "components"],
"appRedux/*": ["redux/*", "redux"],
"utils/*": ["utils/*", "utils"],
"services/*": ["services/*", "services"],
"styles/*": ["styles/*", "styles"],
"hooks/*": ["hooks/*", "hooks"],
"assets/*": ["assets/*", "assets"]
},
"target": "ES2018",
"module": "ESNext",
"sourceMap": true,
"moduleResolution": "node",
"lib": ["DOM", "DOM.Iterable","ESNext"],
"jsx": "react-jsx", // "preserve"
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"resolveJsonModule": true
},
"include": ["./", "src/**/*", "declarations.d.ts", "components", "redux", "utils", "services", "styles", "hooks", "assets"],
"exclude": ["node_modules"]
}