mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 05:41:39 +00:00
33 lines
732 B
JSON
33 lines
732 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowArbitraryExtensions": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES2024"
|
|
],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": true,
|
|
"skipLibCheck": false,
|
|
"target": "ES2024",
|
|
"types": [
|
|
"node",
|
|
"obsidian-typings",
|
|
"svelte"
|
|
],
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.svelte",
|
|
"./src/**/*.ts",
|
|
"./scripts/**/*.ts"
|
|
]
|
|
}
|