[I18n] Fix types paths for kbn-i18n package (#23744) (#23803)

* [I18n] Fix types paths for kbn-i18n package

* Remove module field from package.json
This commit is contained in:
Leanid Shutau 2018-10-04 12:07:21 +03:00 committed by GitHub
parent d758441fab
commit 8b24893334
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{
"browser": "../target/web/angular",
"main": "../target/node/angular",
"types": "./target/types/angular/index.d.ts"
"types": "../target/types/angular/index.d.ts"
}

View file

@ -3,7 +3,6 @@
"browser": "./target/web/browser.js",
"main": "./target/node/index.js",
"types": "./target/types/index.d.ts",
"module": "./src/index.js",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,

View file

@ -1,5 +1,5 @@
{
"browser": "../target/web/react",
"main": "../target/node/react",
"types": "./target/types/react/index.d.ts"
"types": "../target/types/react/index.d.ts"
}