Add vs project to headless tsconfig

This commit is contained in:
Daniel Imms
2024-07-14 08:30:06 -07:00
parent e267f05141
commit 26c73b8ead
+4 -2
View File
@@ -12,7 +12,8 @@
],
"baseUrl": "../",
"paths": {
"common/*": [ "./common/*" ]
"common/*": [ "./common/*" ],
"vs/*": [ "./vs/*" ]
}
},
"include": [
@@ -21,6 +22,7 @@
"../../typings/xterm-headless.d.ts"
],
"references": [
{ "path": "../common" }
{ "path": "../common" },
{ "path": "../vs" }
]
}