sotashimozono_obsidian-remo.../plugin/tsconfig.json
sotashimozono 89db12cc63
fix(plugin): add node types to tsconfig to resolve unsafe-member warnings (#380)
* fix(plugin): add node types to tsconfig to resolve fs/process unsafe-member warnings

@types/node was already in devDependencies but missing from tsconfig
"types", so TypeScript couldn't resolve fs, path, process, and other
Node.js built-in types. This caused the ObsidianReviewBot to flag all
usages as "Unsafe member access on a type that cannot be resolved".

* chore: bump to 1.1.2-beta.1
2026-06-08 21:48:02 +09:00

16 lines
381 B
JSON

{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "preserve",
"moduleResolution": "bundler",
"target": "ES2018",
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["ES2018", "DOM"],
"types": ["node"],
"skipLibCheck": true
},
"include": ["src/**/*.ts"]
}