generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 729 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 729 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
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": true,
"strict": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"moduleResolution": "Node",
"importHelpers": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"lib": ["DOM", "ESNext"],
"types": ["svelte"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": [
"packages/core/**/*.ts",
"packages/core/**/*.svelte",
"packages/obsidian/**/*.ts",
"packages/obsidian/**/*.svelte",
"packages/publish/**/*.ts",
"packages/publish/**/*.svelte",
"tests/**/*.ts",
"node_modules/obsidian/publish.d.ts",
"packages/type-ex.d.ts"
]
}