mirror of
https://github.com/tmlnv/obsidian-telegram-bridge.git
synced 2026-07-22 17:10:24 +00:00
19 lines
472 B
JSON
19 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"lib": ["DOM", "ES2020"],
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|