-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.16 KB
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"extends": "@pinback/typescript-config/react.json",
"compilerOptions": {
"skipLibCheck": true,
"noImplicitAny": false, // any 타입 허용
"strict": false, // 엄격 모드 비활성화
"moduleResolution": "bundler",
"baseUrl": ".",
"outDir": "./dist/",
"sourceMap": true,
"module": "esnext",
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": false,
"plugins": [{ "name": "react" }],
"types": ["vite/client", "chrome"],
"resolveJsonModule": true,
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@utils/*": ["src/utils/*"],
"@apis/*": ["src/apis/*"],
"@hooks/*": ["src/hooks/*"],
"@constants/*": ["src/constants/*"],
"@shared-types/*": ["src/types/*"],
"@api/*": ["src/api/*"],
"@shared/*": ["src/shared/*"]
}
},
"include": ["src/**/*", "manifest.json", "popup.html", "vite.config.ts"],
"exclude": ["node_modules", "dist"]
}