Files
vscode/extensions/markdown-language-features/tsconfig.json
Matt Bierner 98ad0f55db Proper fix for missing node types in web build
Using `path` in web for these cases is ok (but not ideal) because webpack shims it out
2025-10-14 12:14:28 -07:00

15 lines
228 B
JSON

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