-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (21 loc) · 606 Bytes
/
Copy pathtsconfig.json
File metadata and controls
22 lines (21 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"types": ["svelte", "node", "obsidian-typings"],
// Resolves repo-root-relative imports ("src/…", "wasm/pkg/…"). Replaces
// `baseUrl: "."`, which TypeScript 7 removed.
"paths": { "*": ["./*"] },
"inlineSources": true,
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": true,
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"lib": ["DOM", "ES2022"]
},
"include": ["**/*.ts", "**/*.svelte"]
}