d9efc3bae2
Replace skipLibCheck with an explicit types list so TypeScript and dts-bundle-generator only auto-include @types/golang-wasm-exec and @types/qrcode, preventing @types/eslint-scope and @types/ws from leaking in from a parent node_modules when built inside a monorepo. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
388 B
JSON
17 lines
388 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"types": ["golang-wasm-exec", "qrcode"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|