mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 17:20:24 +00:00
Turn on noImplicitAny in tsconfig.json. Add explicit type annotations to all 137 previously untyped parameters across main.ts, view.ts, modal.ts, settings-tab.ts, providers.ts, cli.ts, anchor.ts, scroll.ts, ui-helpers.ts, vault.ts, and settings.ts. Change-Id: Icc5a69ab57113e9f6dc08dd97e3a8fa5e7e24937
21 lines
531 B
JSON
21 lines
531 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"strict": false,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts"]
|
|
}
|