mntno_obsidian-come-through/tsconfig.json
2026-05-17 20:56:41 +07:00

42 lines
733 B
JSON

{
"compilerOptions": {
// Enable to check TS7 compatibility.
"stableTypeOrdering": false,
"rootDir": "./src",
"paths": {
"*": ["./src/*"],
"#/*": ["./src/*"]
},
"inlineSourceMap": true,
"inlineSources": true,
"target": "ES2022",
"lib": [
"DOM",
"ES2022"
],
"types": ["node"],
"moduleResolution": "bundler",
"isolatedModules": true,
"verbatimModuleSyntax": false,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"erasableSyntaxOnly": false,
"exactOptionalPropertyTypes": false,
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"./node_modules",
"./dist",
"./build",
"./main.js",
"./eslint.config.js"
]
}