Files
vscode/extensions/json-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

17 lines
234 B
JSON

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