-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (41 loc) · 1.33 KB
/
Copy pathtsconfig.json
File metadata and controls
48 lines (41 loc) · 1.33 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
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
// 基本設定
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
// 型チェック設定
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
// モジュール設定
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
// 出力設定
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
"skipLibCheck": true,
// パフォーマンス設定
"composite": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo-root"
},
// ワークスペース全体のファイル設定
"include": ["apps/**/*", "packages/**/*", "scripts/**/*"],
"exclude": ["node_modules", "**/node_modules", "**/dist", "**/build", "**/.svelte-kit"],
// プロジェクト参照設定
"references": [
{ "path": "./packages/cloudinary-utils/tsconfig.json" },
{ "path": "./packages/content-processor/tsconfig.json" },
{ "path": "./packages/og-image-generator/tsconfig.json" },
{ "path": "./apps/astro-blog/tsconfig.json" }
]
}