Merge pull request #191 from spotify/patriko/autocomplete

packages: fix typescript import autocompletion
This commit is contained in:
Patrik Oldsberg
2020-03-07 19:45:25 +01:00
committed by GitHub
4 changed files with 8 additions and 4 deletions
@@ -1,7 +1,8 @@
{
"name": "@spotify-backstage/plugin-{{id}}",
"version": "0.0.0",
"main": "dist/cjs",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"license": "Apache-2.0",
"private": false,
"scripts": {
+2 -1
View File
@@ -3,7 +3,8 @@
"version": "1.0.0",
"license": "Apache-2.0",
"private": false,
"main": "dist/cjs",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/cjs --noEmit false --module CommonJS",
"lint": "web-scripts lint",
+2 -1
View File
@@ -1,7 +1,8 @@
{
"name": "@spotify-backstage/plugin-hello-world",
"version": "0.0.0",
"main": "dist/cjs",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"devDependencies": {
"@spotify-backstage/cli": "^1.2.0",
"@spotify-backstage/core": "1.0.0",
+2 -1
View File
@@ -1,7 +1,8 @@
{
"name": "@spotify-backstage/plugin-home-page",
"version": "0.0.0",
"main": "dist/cjs",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"devDependencies": {
"@spotify-backstage/cli": "^1.2.0",
"@spotify-backstage/core": "1.0.0",