Files
vscode-extension-samples/notebook-renderer-sample/tsconfig.json
Matt Bierner 22e6083e6f Update notebook renderer sample
- Removes test related code since there are no tests
- Removes client/renderer split since there is only a renderer
- Simplify webpack logic to align with our webpack sample
- Document in top  level readme and improve docs
2022-06-28 08:35:13 -07:00

13 lines
274 B
JSON

{
"compilerOptions": {
"rootDir": "src",
"outDir": "out",
"module": "esnext",
"target": "es2020",
"lib": ["es2020", "dom"],
"moduleResolution": "node",
"sourceMap": true,
"strict": true /* enable all strict type-checking options */
}
}