-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
36 lines (36 loc) · 1.02 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"sourceRoot": "src",
"sourceMap": true,
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"paths": {
"@assets/*": ["src/assets/*"],
"@components": ["src/components"],
"@constants": ["src/constants"],
"@hooks": ["src/hooks"],
"@interfaces": ["src/interfaces"],
"@layouts": ["src/layouts"],
"@pages": ["src/pages"],
"@services": ["src/services"],
"@states": ["src/states"],
"@utils": ["src/utils"]
}
},
"include": ["src", "**/*.ts", "**/*.tsx", "**/*.js", "*.cjs"],
"references": [{ "path": "./tsconfig.node.json" }]
}