1
1
mirror of https://github.com/mdx-js/mdx.git synced 2024-10-05 20:07:37 +03:00
mdx/tsconfig.json
Titus Wormer d1c8492101
Add temporary skipLibCheck
Related-to: #1776.
2024-09-13 18:05:56 +02:00

27 lines
690 B
JSON

{
"compilerOptions": {
"checkJs": true,
"customConditions": ["development"],
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"exactOptionalPropertyTypes": true,
"jsx": "preserve",
"lib": ["es2022"],
"module": "node16",
"moduleResolution": "node16",
// Needed for DocSearch for now: <https://github.com/mdx-js/mdx/issues/1776#issuecomment-2349294900>.
"skipLibCheck": true,
"strict": true,
"target": "es2022"
},
"exclude": ["**/coverage/", "**/node_modules/", "**/public/"],
"include": [
"**/*.cjs",
"**/*.js",
"**/*.jsx",
"packages/mdx/lib/types.d.ts",
"website/types.d.ts"
]
}