mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-23 03:07:58 +00:00
I reviewed the various changes and library additions of es2024 and it seems they are widely supported across node and modern browsers
19 lines
265 B
JSON
19 lines
265 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"es2024",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
]
|
|
},
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"@types/vscode-webview"
|
|
]
|
|
}
|
|
}
|