mirror of
https://github.com/hananoshikayomaru/Obsidian-Frontmatter-Generator.git
synced 2026-07-22 08:40:34 +00:00
25 lines
574 B
JSON
25 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7", "ESNext"],
|
|
"types": ["bun-types"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.js"],
|
|
"exclude": ["node_modules"]
|
|
}
|