forked from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 907 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 907 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
{
"compilerOptions": {
"types": ["obsidian-typings"],
"paths": {
"obsidian-typings/implementations": [
"./node_modules/obsidian-typings/dist/cjs/implementations.d.cts",
"./node_modules/obsidian-typings/dist/esm/implementations.mjs"
]
},
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2021",
"inlineSourceMap": true,
"inlineSources": true,
"allowJs": true,
"noImplicitAny": true,
"importHelpers": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"lib": ["DOM", "ES2021"]
},
"include": ["./src/**/*.ts", "./scripts/**/*.ts"],
"exclude": ["node_modules", "eslint.config.ts"]
}