-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.18 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.18 KB
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
{
"compilerOptions": {
"baseUrl": "./src",
"target": "ES5" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [
"dom",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020"
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
"jsx": "react-jsx",
"module": "commonjs",
"moduleResolution": "node",
"allowJs": true,
"sourceMap": true,
"outDir": "./dist",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"typeRoots": ["types", "node_modules/@types"],
"paths": {
"@/apis/*": ["apis/*"],
"@/assets/*": ["assets/*"],
"@/components/*": ["components/*"],
"@/fonts/*": ["fonts/*"],
"@/hooks/*": ["hooks/*"],
"@/pages/*": ["pages/*"],
"@/constants/*": ["constants/*"],
"@/utils/*": ["utils/*"],
"@/mocks/*": ["mocks/*"],
"@/types/*": ["types/*"],
"@/store/*": ["store/*"],
"@/theme/*": ["theme/*"]
}
}
}