mnaoumov_obsidian-backlink-.../tsconfig.json

38 lines
897 B
JSON
Raw Normal View History

2025-03-09 15:42:38 +00:00
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"inlineSourceMap": true,
"inlineSources": true,
"lib": [
"DOM",
"DOM.Iterable",
2025-03-09 15:42:38 +00:00
"ES2024"
],
"libReplacement": true,
2025-03-09 15:42:38 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": true,
"skipLibCheck": false,
"target": "ES2024",
"types": [
"@total-typescript/ts-reset",
2025-03-09 15:42:38 +00:00
"node",
"@obsidian-typings/obsidian-public-latest"
2025-03-09 15:42:38 +00:00
],
"verbatimModuleSyntax": true
},
"include": [
2025-10-06 01:54:40 +00:00
"./.markdownlint-cli2.mts",
"./commitlint.config.ts",
"./eslint.config.mts",
"./scripts/**/*.ts",
2025-03-09 15:42:38 +00:00
"./src/**/*.ts",
"./vitest.config.ts"
2025-03-09 15:42:38 +00:00
]
}