mirror of
https://github.com/sotashimozono/obsidian-remote-ssh.git
synced 2026-07-22 17:10:32 +00:00
* 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
16 lines
381 B
JSON
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"]
|
|
}
|