mirror of
https://github.com/mntno/obsidian-come-through.git
synced 2026-07-22 05:47:56 +00:00
42 lines
733 B
JSON
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"
|
|
]
|
|
}
|