mirror of
https://github.com/vran-dev/obsidian-contribution-graph.git
synced 2026-07-22 09:20:23 +00:00
34 lines
No EOL
918 B
JSON
34 lines
No EOL
918 B
JSON
{
|
|
"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"
|
|
]
|
|
} |