mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 05:41:39 +00:00
- Replace obsidian-typings with @obsidian-typings/obsidian-public-latest - Update vitest config: replace ssr.noExternal with server.deps.inline - Add DOM.Iterable to tsconfig lib - Remove obsolete overrides (@antfu/utils, boolean, dompurify) - Upgrade dependencies via npm-check-updates
37 lines
897 B
JSON
37 lines
897 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowArbitraryExtensions": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES2024"
|
|
],
|
|
"libReplacement": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": true,
|
|
"skipLibCheck": false,
|
|
"target": "ES2024",
|
|
"types": [
|
|
"@total-typescript/ts-reset",
|
|
"node",
|
|
"@obsidian-typings/obsidian-public-latest"
|
|
],
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"./.markdownlint-cli2.mts",
|
|
"./commitlint.config.ts",
|
|
"./eslint.config.mts",
|
|
"./scripts/**/*.ts",
|
|
"./src/**/*.ts",
|
|
"./vitest.config.ts"
|
|
]
|
|
}
|