9e7449b1ee
Fixture files use jsx: react-jsx (via their own tsconfig) and have expected children type differences. Exclude from package-level checks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
23 lines
547 B
JSON
23 lines
547 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["es2023"],
|
|
"moduleDetection": "force",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue"
|
|
},
|
|
"exclude": ["integration/pty/fixtures"]
|
|
}
|