Files
vscode/extensions/html-language-features/server/tsconfig.json
Matt Bierner 30b93b1217 Bump extensions to target es2024
I reviewed the various changes and library additions of es2024 and it seems they are widely supported across node and modern browsers
2025-08-05 10:40:33 -07:00

15 lines
187 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out",
"lib": [
"ES2024",
"WebWorker"
],
"module": "Node16",
},
"include": [
"src/**/*"
]
}