monaco-editor/src/tsconfig.json
Henning Dieterichs d98d3600ef
Bundles typescriptServices.js with tsc, thus getting rid of -amd.js.
This means that `npm run watch` is enough to run the monaco playground.
2023-02-22 18:08:04 +01:00

14 lines
320 B
JSON

{
"compilerOptions": {
"declaration": true,
"lib": ["dom", "es5", "es2015.collection", "es2015.promise", "es2015.iterable"],
"module": "amd",
"moduleResolution": "node",
"outDir": "../out/languages/amd-tsc",
"strict": true,
"target": "es5",
"sourceMap": true,
"allowJs": true,
"checkJs": false
}
}