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

21 lines
447 B
JSON
Raw Normal View History

2021-08-01 22:18:21 -07:00
{
"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/**/*"
2021-08-01 22:18:21 -07:00
]
}