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-17 05:55:19 +00:00
|
|
|
"DOM.Iterable",
|
2025-03-09 15:42:38 +00:00
|
|
|
"ES2024"
|
|
|
|
|
],
|
2026-04-06 22:36:57 +00:00
|
|
|
"libReplacement": true,
|
2025-03-09 15:42:38 +00:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"skipLibCheck": false,
|
|
|
|
|
"target": "ES2024",
|
|
|
|
|
"types": [
|
2026-04-06 22:36:57 +00:00
|
|
|
"@total-typescript/ts-reset",
|
2025-03-09 15:42:38 +00:00
|
|
|
"node",
|
2026-05-17 05:55:19 +00:00
|
|
|
"@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",
|
2026-04-22 08:31:42 +00:00
|
|
|
"./scripts/**/*.ts",
|
2025-03-09 15:42:38 +00:00
|
|
|
"./src/**/*.ts",
|
2026-04-22 08:31:42 +00:00
|
|
|
"./vitest.config.ts"
|
2025-03-09 15:42:38 +00:00
|
|
|
]
|
|
|
|
|
}
|