mirror of
https://github.com/hyungyunlim/obsidian-naver-blog-importer.git
synced 2026-07-22 06:45:11 +00:00
- 플러그인 핵심 파일들을 루트 디렉터리로 이동 - 한글 README.md를 루트에 배치하여 GitHub 표시 개선 - .gitignore 업데이트로 불필요한 파일들 제외 - 모듈러 아키텍처 유지 (src/, lang/ 폴더) - 레거시 파일들을 .gitignore로 관리 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
No EOL
336 B
JSON
20 lines
No EOL
336 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES6"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
} |