forked from MZBR-2023/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 863 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
{
"compilerOptions": {
"outDir": "./dist",
"target": "ES2015",
"module": "esnext",
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"jsx": "react-jsx",
"allowJs": true,
"baseUrl": ".", // 절대경로 설정
"paths": {
"@/*": ["./src/*"],
"@pages/*": ["./src/pages/*"],
"@components/*": ["./src/components/*"],
"@constants/*": ["./src/constants/*"],
"@hooks/*": ["./src/hooks/*"],
"@apis/*": ["./src/apis/*"],
"@stores/*": ["./src/stores/*"],
"@utils/*": ["./src/utils/*"],
"@assets/*": ["./src/assets/*"]
},
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
}