mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-04 01:44:44 -06:00
27 lines
395 B
JSON
27 lines
395 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "./dist/",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"es2024",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"types": [
|
|
"vscode-webview"
|
|
],
|
|
"typeRoots": [
|
|
"../node_modules/@types"
|
|
],
|
|
"skipLibCheck": true
|
|
},
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"@types/vscode-webview"
|
|
]
|
|
}
|
|
}
|