generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
34 lines (34 loc) · 918 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
{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"jsx": "react-jsx",
"strictNullChecks": true,
"paths" :{
"data-model/*" : ["./node_modules/obsidian-dataview/lib/data-model/*"],
"api/*" : ["./node_modules/obsidian-dataview/lib/api/*"],
"data-index/*" : ["./node_modules/obsidian-dataview/lib/data-index/*"],
"query/*" : ["./node_modules/obsidian-dataview/lib/query/*"],
"expression/*" : ["./node_modules/obsidian-dataview/lib/expression/*"],
"settings" : ["./node_modules/obsidian-dataview/lib/settings"]
},
"lib": [
"DOM",
"ES5",
"ES6",
"ES7"
]
},
"include": [
"**/*.ts",
"**/*.tsx"
]
}