mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:43:07 +00:00
d11134fdf8
This makes the css, html, and json language servers to use the `webworker` typings. This lets us avoid having to redeclare `self`
13 lines
164 B
JSON
13 lines
164 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"lib": [
|
|
"ES2020",
|
|
"WebWorker"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|