mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
Install @biomejs/biome with lint and format config. Add npm lint/lint:fix scripts. Auto-fix formatting across all source files. Update tsconfig lib to ES2022 for Object.hasOwn support. Change-Id: I13e3ba2f106f7e3d03349080b7ed515d427d24a1
21 lines
532 B
JSON
21 lines
532 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"],
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts"]
|
|
}
|