Files
repomix-mirror/browser/tsconfig.json
Kazuki Yamada 926973f7f9 fix(browser): Remove deprecated moduleResolution and module overrides
The tsgo update removed support for moduleResolution=node10. These
options were unnecessary overrides since WXT's generated tsconfig
already sets module=ESNext and moduleResolution=Bundler correctly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 19:49:03 +09:00

16 lines
284 B
JSON

{
"extends": "./.wxt/tsconfig.json",
"compilerOptions": {
"strict": true,
"target": "esnext",
"lib": [
"dom",
"esnext"
],
"allowJs": false,
"noImplicitAny": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true
}
}