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

This means that `npm run watch` is enough to run the monaco playground.
pull/3586/head
Henning Dieterichs 2 years ago
parent 5ccfdf7c02
commit d98d3600ef
No known key found for this signature in database
GPG Key ID: 771381EFFDB9EC06

@ -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

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

Loading…
Cancel
Save