-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
32 lines (32 loc) · 1014 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": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@utils/*": ["src/utils/*"],
"@components/*": ["src/components/*"],
"@config/*": ["src/config/*"],
"@views/*": ["src/views/*"],
"@assets/*": ["src/assets/*"],
"@icons/*": ["src/assets/icons/*"],
"@fonts/*": ["src/assets/fonts/*"],
"@favicons/*": ["src/assets/favicons/*"],
"@router/*": ["src/router/*"],
"@router/Page404/*": ["src/router/Page404/*"],
"@store/*": ["src/store/*"],
"@reducers/*": ["src/store/reducers/*"],
"@actions/*": ["src/store/actionCreater/*"],
},
"module": "commonjs",
"noImplicitAny": true,
"sourceMap": true,
"target": "es2017",
"allowJs": true,
"noEmit": false,
"skipLibCheck": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
},
"exclude": ["node_modules"],
}