Files
vscode/extensions/notebook-renderers/tsconfig.json
Matt Bierner cca17c1b7f Use ts-go for building our extensions
Also reverts to use experimental decorators due to stage 3 decorators not being supported yet https://github.com/microsoft/typescript-go/issues/2354

The skipLib check is needed to work around some jsdom types issues
2026-02-02 20:06:00 -08:00

23 lines
316 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./out",
"lib": [
"es2024",
"dom"
],
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types"
],
"skipLibCheck": true
},
"include": [
"src/**/*",
"../../src/vscode-dts/vscode.d.ts"
]
}