mnaoumov_obsidian-backlink-.../tsconfig.json

38 lines
890 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",
2026-05-26 18:37:41 +00:00
"DOM.Iterable",
2026-06-21 07:19:03 +00:00
"ES2022"
2025-03-09 15:42:38 +00:00
],
"libReplacement": true,
2026-06-11 08:56:54 +00:00
"module": "node16",
"moduleResolution": "node16",
2025-03-09 15:42:38 +00:00
"noEmit": true,
2026-06-11 08:56:54 +00:00
"skipLibCheck": true,
"target": "es2022",
2025-03-09 15:42:38 +00:00
"types": [
2026-06-28 03:12:11 +00:00
"@obsidian-typings/obsidian-public-latest",
"@total-typescript/ts-reset",
2026-06-28 03:12:11 +00:00
"node"
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
]
}