mirror of
https://github.com/oxc-project/oxc.git
synced 2026-09-14 19:36:11 +08:00
ee0491e937
Replaces #20064 The `dom` lib was implicitly being injected, this means stuff like `Token` and `Comment` were in the global scope, which was incorrect. cc @overlookmotel
20 lines
426 B
JSON
20 lines
426 B
JSON
{
|
|
"extends": "./tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "./.tsbuild/browser",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"DOM.AsyncIterable",
|
|
"WebWorker.ImportScripts",
|
|
"ScriptHost"
|
|
]
|
|
},
|
|
"include": ["test-browser/**/*.ts", "vitest.config.browser.ts"],
|
|
"exclude": []
|
|
}
|