Files
vscode-extension-samples/notebook-renderer-react-sample/src/client/tsconfig.json

14 lines
364 B
JSON
Raw Normal View History

2021-08-01 22:18:21 -07:00
{
"extends": "../tsconfig-base.json",
"compilerOptions": {
2021-08-01 22:50:23 -07:00
"jsx": "react",
2021-08-01 22:18:21 -07:00
// 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"],
2021-08-01 22:50:23 -07:00
"allowSyntheticDefaultImports": true
2021-08-01 22:18:21 -07:00
}
}