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.
16 lines
354 B
JSON
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"]
|
|
}
|