mirror of
https://github.com/namelesscorp/tvault-obsidian-plugin.git
synced 2026-07-22 08:34:03 +00:00
23 lines
566 B
JSON
23 lines
566 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": false,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ES2020"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts"]
|
|
}
|