Bundles typescriptServices.js with tsc, thus getting rid of -amd.js.

This means that `npm run watch` is enough to run the monaco playground.
This commit is contained in:
Henning Dieterichs 2023-02-22 18:08:04 +01:00
parent 5ccfdf7c02
commit d98d3600ef
No known key found for this signature in database
GPG Key ID: 771381EFFDB9EC06
3 changed files with 3 additions and 164127 deletions

View File

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

File diff suppressed because one or more lines are too long

View File

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