-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.04 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
37
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./build",
"rootDir": "src",
"target": "ES5",
"allowJs": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": true,
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
"esModuleInterop": true,
"paths": {
"@apis/*": ["src/apis/*"],
"@components/*": ["src/components/*"],
"@constants/*": ["src/constants/*"],
"@context/*": ["src/context/*"],
"@data/*": ["src/data/*"],
"@hooks/*": ["src/hooks/*"],
"@pages/*": ["src/pages/*"],
"@resources/*": ["src/resources/*"],
"@services/*": ["src/services/*"],
"@styles/*": ["src/styles/*"],
"@_types/*": ["src/types/*"],
"@utils/*": ["src/utils/*"],
"@/*": ["src/*"]
}
},
"exclude": ["./build", "node_modules", "./src/server.ts"]
}