mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00

* Remove .d.ts and fix type errors * Fix failing test * Upgrade roll up to remove maxlisteners warning * Refactor type generation and make build script run in sequence to avoid OOM errors in GitHub actions * Small change * Fix playground TS errors
16 lines
321 B
JSON
16 lines
321 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "./.ts-temp"
|
|
},
|
|
"exclude": [
|
|
"**/__tests__/**",
|
|
"node_modules/**/*",
|
|
"packages/lexical-playground/**/*",
|
|
"packages/playwright-core/**/*"
|
|
],
|
|
"extends": "./tsconfig.json"
|
|
}
|