-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.15 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
38
39
40
41
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "es2017.object"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": [
"node",
"react/next",
"react-dom/next",
"vite/client",
"kakao.maps.d.ts",
"@emotion/react/types/css-prop"
],
//react18문법 적용을 위해 추가합니다, 타입선언문에서 기본 타입을 덮어쓸 수 있습니다.
"jsxImportSource": "@emotion/react",
"paths": {
"src/*": ["./src/*"]
}
},
"include": [
"src",
"config.d.ts",
"src/lib/sockjs.min.js",
"firebase-messaging-sw.ts",
"public/firebase-messaging-sw.js"
],
"exclude": ["node_modules"]
//타입 선언 파일을 추가합니다. 필요 시 타입 선언 파일에서 타입을 추가바랍니다 - 서준
}