mirror of
https://github.com/mprojectscode/obsidian-bases-charts-plugin.git
synced 2026-07-22 06:43:19 +00:00
25 lines
635 B
JSON
25 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"sourceMap": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["bun"]
|
|
},
|
|
"include": ["packages/obsidian/src/**/*.ts", "packages/obsidian/src/**/*.svelte", "tests/**/*.ts"]
|
|
}
|