generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
tsconfig.json
43 lines (43 loc) · 919 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@interfaces/*": [
"./src/interfaces/*"
],
"@interfaces": [
"./src/interfaces/index.ts"
],
"obsidian-dataview": [
"node_modules/@obsidian_publisher/obsidian-dataview"
]
},
"noEmit": true,
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ESNEXT",
"allowJs": true,
"noImplicitAny": true,
"skipLibCheck": true,
"removeComments": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"resolveJsonModule": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2021",
"ES2022"
]
},
"include": [
"**/*.ts"
]
}