Merge pull request #3586 from microsoft/hediet/bundleTypescriptServicesWithTsc

bundle typescript services with tsc
This commit is contained in:
Henning Dieterichs 2023-02-23 12:02:19 +01:00 committed by GitHub
commit b67461f194
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 164127 deletions

View file

@ -131,11 +131,6 @@ buildAMD({
//#region typescript //#region typescript
copyFile(
`src/language/typescript/lib/typescriptServices-amd.js`,
`out/languages/amd-tsc/language/typescript/lib/typescriptServices.js`
);
buildESM({ buildESM({
base: 'language/typescript', base: 'language/typescript',
entryPoints: [ entryPoints: [

File diff suppressed because one or more lines are too long

View file

@ -7,6 +7,8 @@
"outDir": "../out/languages/amd-tsc", "outDir": "../out/languages/amd-tsc",
"strict": true, "strict": true,
"target": "es5", "target": "es5",
"sourceMap": true "sourceMap": true,
"allowJs": true,
"checkJs": false
} }
} }