Add main field for TS node resolution compatibility (#192)

This commit is contained in:
Connor Peet 2024-08-02 09:48:42 -07:00 коммит произвёл GitHub
Родитель 4e9d3ad956
Коммит 609174ac81
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 5 добавлений и 4 удалений

4
protocol/package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "@vscode/lsif-protocol",
"version": "0.6.0-next.8",
"version": "0.6.0-next.9",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@vscode/lsif-protocol",
"version": "0.6.0-next.8",
"version": "0.6.0-next.9",
"license": "MIT",
"dependencies": {
"vscode-languageserver-types": "^3.17.5"

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "@vscode/lsif-protocol",
"description": "Typescript implementation of the LSIF protocol",
"version": "0.6.0-next.8",
"version": "0.6.0-next.9",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
@ -14,6 +14,7 @@
"engines": {
"node": ">=20.9.0"
},
"main": "./lib/main.js",
"exports": {
".": {
"types": "./lib/main.d.ts",
@ -33,4 +34,4 @@
"all:publish": "git clean -xfd . && npm run clean && npm install && npm run compile:publish && npm run lint",
"compile:publish": "tsc -p ./tsconfig.publish.json"
}
}
}