Fix errors in 'build' script directory (#20004)

* Update build scripts

* Update build files

* fix build errors
This commit is contained in:
Karl Burtram
2022-07-11 23:23:24 -07:00
committed by GitHub
parent 980a233aad
commit 6eda44f828
17 changed files with 193 additions and 150 deletions

View File

@@ -155,6 +155,14 @@ module _nls {
this.lib = ts.ScriptSnapshot.fromString('');
}
// {{SQL CARBON EDIT}} - provide missing methods
readFile(): string | undefined {
return undefined;
}
fileExists(): boolean {
return false;
}
getCompilationSettings = () => this.options;
getScriptFileNames = () => [this.filename];
getScriptVersion = () => '1';