In 1.x releases we're no longer to be able to do following:
import { ProtocolToMonacoConverter } from 'monaco-languageclient/lib/monaco-converter.js';
Would it be possible to add new field to exports?
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./monaco-converter": {
"types": "./lib/monaco-converter.d.ts",
"default": "./lib/monaco-converter.js"
},
"./amd": {
"types": "./dist/amd/index.d.ts",
"default": "./dist/amd/index.js"
},
"./vscode-compatibility": {
"types": "./lib/vscode-compatibility.d.ts",
"default": "./lib/vscode-compatibility.js"
},
"./amd/vscode-compatibility": {
"types": "./dist/amd/vscode-compatibility.d.ts",
"default": "./dist/amd/vscode-compatibility.js"
}
},
We only need converter part and and only pull converter necessary files from the library.
In 1.x releases we're no longer to be able to do following:
Would it be possible to add new field to exports?
We only need converter part and and only pull converter necessary files from the library.