mirror of
https://github.com/tmlnv/obsidian-telegram-bridge.git
synced 2026-07-22 06:53:13 +00:00
- tsconfig: drop deprecated baseUrl and moduleResolution=node10 (node->bundler)
that failed build verification on newer TypeScript
- esbuild: replace builtin-modules dependency with node:module builtinModules
- settings-tab: use createDiv/createSpan instead of createEl("div"/"span")
- main: avoid globalThis; reference crypto.randomUUID directly
- type Supabase rpc/select responses and loadData to remove unsafe-any flows
(destructuring, assignment, member access, arguments)
- template-engine: annotate replace() callback params to drop unsafe arguments
- styles: drop !important; override via selector specificity
- bump version to 0.1.1 (manifest, package, versions)
18 lines
455 B
JSON
18 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"lib": ["DOM", "ES2020"],
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|