-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
40 lines (40 loc) · 1.44 KB
/
jsconfig.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
// See https://go.microsoft.com/fwlink/?LinkId=759670
// for the documentation about the jsconfig.json format
{
"compilerOptions": {
"target": "esnext",
"module": "es6",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@types": ["./types"],
"@types/*": ["./types/*"],
"@src": ["./src"],
"@src/*": ["./src/*"],
"@srcApiServer": ["./src-api-server"],
"@srcApiServer/*": ["./src-api-server/*"],
"@api": ["./src/apis"],
"@api/*": ["./src/apis/*"],
"@assets": ["./src/assets"],
"@assets/*": ["./src/assets/*"],
"@components": ["./src/components"],
"@components/*": ["./src/components/*"],
"@constants": ["./src/constants"],
"@constants/*": ["./src/constants/*"],
"@server": ["./src/server"],
"@server/*": ["./src/server/*"],
"@store": ["./src/store"],
"@store/*": ["./src/store/*"],
"@utils": ["./src/utils"],
"@utils/*": ["./src/utils/*"],
"@views": ["./src/views"],
"@views/*": ["./src/views/*"],
"~Assets": ["./src/assets"],
"~Assets/*": ["./src/assets/*"],
"~/*": ["./src/*"]
}
},
"exclude": [".*", "dist", "dist*", "node_modules"]
}