mirror of
https://github.com/rekby/obsidian-video-notes.git
synced 2026-07-22 14:10:29 +00:00
20 lines
499 B
JSON
20 lines
499 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["DOM", "ES2020"],
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["src/**/*.ts", "demo/**/*.ts", "tests/**/*.ts"]
|
|
}
|