mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
20 lines
280 B
JSON
20 lines
280 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2020",
|
|
"jsx": "preserve",
|
|
"strictFunctionTypes": true,
|
|
"lib": [
|
|
"dom"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*"
|
|
],
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"@types/vscode-webview"
|
|
]
|
|
}
|
|
} |