uppinote20_obsidian-auto-no.../tsconfig.json
uppinote 3b8f6b972e refactor: enable TypeScript strict mode and fix memory leak
- 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
2026-03-13 17:00:15 +09:00

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"
]
}