monaco-editor/build/amd
Claude 4540e05e5a
Add JSON with interpolation language support
Introduce a new 'json-interpolation' language that extends JSON with
${...} variable interpolation syntax. Features include:

- Monarch tokenizer with nextEmbedded for JavaScript inside ${...}
- Variable context API for custom completion and hover providers
- Diagnostics filtering to ignore errors inside interpolations
- Full JSON language service integration (formatting, symbols, etc.)
- Support for JSONC-style comments and trailing commas

Usage:
```typescript
monaco.languages.jsonInterpolation.jsonInterpolationDefaults.setVariableContext({
  getVariables: () => [
    { name: 'env', type: 'string', value: 'production' }
  ]
});
```
2025-12-09 19:46:12 +00:00
..
src Uses rollup for ESM build and d.ts bundling. (#5048) 2025-10-13 18:05:43 +02:00
build.script.ts uses rollup to bundle monaco-editor's monaco.d.ts (#5033) 2025-10-09 21:26:17 +02:00
plugin.js Fixes worker sandbox problems (#4975) 2025-09-05 14:27:56 -04:00
rollup-types.config.mjs Cleans up build scripts (#5097) 2025-11-07 13:10:14 +01:00
vite.config.mjs Add JSON with interpolation language support 2025-12-09 19:46:12 +00:00