Files
vscode-extension-samples/notebook-renderer-react-sample/src/client/tsconfig.json
tanhakabir ae0a71b27b add React
2021-08-01 22:50:23 -07:00

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
}
}