mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Also updates the react sample to only have a single tsconfig so tsfmt can be easily run on it
21 lines
447 B
JSON
21 lines
447 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "ES2020",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"jsx": "react",
|
|
// noEmit prevents the default tsc from building this--we use webpack instead
|
|
"noEmit": true,
|
|
"rootDir": ".",
|
|
"types": [
|
|
"webpack-env",
|
|
"vscode-notebook-renderer"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |