mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
14 lines
364 B
JSON
14 lines
364 B
JSON
{
|
|
"extends": "../tsconfig-base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
// noEmit prevents the default tsc from building this--we use webpack instead
|
|
"noEmit": true,
|
|
"rootDir": ".",
|
|
"module": "esnext",
|
|
"lib": ["ES2019", "dom"],
|
|
"types": ["webpack-env", "vscode-notebook-renderer"],
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|