mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
Both were ES2020 while lib was already ES2022, creating a mismatch that could allow using APIs esbuild wouldn't polyfill. Obsidian 1.4+ runs Electron 25+ which fully supports ES2022. Change-Id: I732538280146c6a91cf52cc52ef124f6a364dc5e
16 lines
378 B
JSON
16 lines
378 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts"]
|
|
}
|