mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 12:30:24 +00:00
31 lines
792 B
JSON
31 lines
792 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["./components/*"],
|
|
"@/constants/*": ["./constants/*"],
|
|
"@/contexts/*": ["./contexts/*"],
|
|
"@/core/*": ["./core/*"],
|
|
"@/hooks/*": ["./hooks/*"],
|
|
"@/integrations/*": ["./integrations/*"],
|
|
"@/styles/*": ["./styles/*"],
|
|
"@/types/*": ["./types/*"],
|
|
"@/views/*": ["./views/*"]
|
|
},
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7"],
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
|
}
|