Files
remark42/frontend/packages/api/tsconfig.json
T
Dmitry Verkhoturov ab9e6675cf fix type check failure in @remark42/api package
Add skipLibCheck to skip type checking of .d.ts files in node_modules,
matching the setting already used by the main remark42 app. Fixes
@types/eslint-scope vs @types/eslint type incompatibility.
2026-03-07 21:37:46 +00:00

16 lines
354 B
JSON

{
"compilerOptions": {
"target": "es2016",
"lib": ["DOM"],
"moduleResolution": "node",
"baseUrl": "./",
"declaration": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["index.ts", "clients", "lib"],
"exclude": ["tests", "coverage"]
}