-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (33 loc) · 1023 Bytes
/
Copy pathtsconfig.json
File metadata and controls
35 lines (33 loc) · 1023 Bytes
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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client", "vite-plugin-pwa/client", "node"],
"verbatimModuleSyntax": true,
"isolatedModules": true,
"moduleDetection": "force",
"resolveJsonModule": true,
/* paraglide 생성물(.js + JSDoc)은 타입 소스로 쓰되 검사 대상은 아니다. */
"allowJs": true,
"checkJs": false,
"noEmit": true,
"skipLibCheck": true,
/* PLAN.md §9: TS strict. 아래는 strict:true 에 더한 추가 안전장치. */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true
},
"include": [
"src/**/*.ts",
"src/**/*.svelte",
"vite.config.ts",
"svelte.config.js"
],
"exclude": ["node_modules", "dist", "src/lib/paraglide"]
}