mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
Switch from incremental strict flags to strict: true. Fix property initializers with definite assignment assertions and inline defaults, and annotate all catch clauses with unknown type. Change-Id: I805047eebea7dc5414ff7001aca96eac5a099d02
16 lines
379 B
JSON
16 lines
379 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noImplicitReturns": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts"]
|
|
}
|