mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 05:41:39 +00:00
37 lines
890 B
JSON
37 lines
890 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",
|
|
"ES2022"
|
|
],
|
|
"libReplacement": true,
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"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"
|
|
]
|
|
}
|