mirror of
https://github.com/uppinote20/obsidian-auto-note-importer.git
synced 2026-07-22 05:48:42 +00:00
- tsconfig.json: strict: true 활성화 (noImplicitAny, strictNullChecks를 대체) - main.ts: definite assignment assertions (!) 추가 — Obsidian Plugin은 onload()에서 초기화 - settings-tab.ts: strictFunctionTypes 호환을 위해 onChange 타입 캐스트 - settings-tab.ts: hide() 오버라이드로 debounceTimer 정리 (메모리 누수 수정) Closes #38
23 lines
389 B
JSON
23 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|