Regression: `yarn dev` not working (#26071)

pull/26075/head
gabriellsh 4 years ago committed by GitHub
parent decb096968
commit 80ae54e3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      _templates/package/new/package.json.ejs.t
  2. 3
      packages/favicon/package.json
  3. 1
      packages/favicon/tsconfig.json
  4. 1
      packages/gazzodown/package.json
  5. 3
      packages/gazzodown/tsconfig.json
  6. 3
      packages/model-typings/tsconfig.json
  7. 1
      packages/models/tsconfig.json
  8. 3
      packages/ui-client/package.json
  9. 3
      packages/ui-client/tsconfig.json
  10. 5
      tsconfig.json

@ -18,7 +18,6 @@ to: packages/<%= name %>/package.json
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"jest": "jest",
"build": "rm -rf dist && tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",

@ -9,8 +9,7 @@
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"build": "rm -rf dist && tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput"
"build": "rm -rf dist && tsc -p tsconfig.json"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",

@ -4,6 +4,7 @@
"rootDir": "./src",
"outDir": "./dist",
"lib": ["DOM"],
"composite": true
},
"include": ["./src/**/*"]
}

@ -48,7 +48,6 @@
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"test": "jest",
"build": "rm -rf dist && tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"typecheck": "tsc -p tsconfig.json --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"

@ -2,7 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
"outDir": "./dist",
"composite": true
},
"include": ["./src/**/*"]
}

@ -2,7 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
"outDir": "./dist",
"composite": true
},
"include": ["./src/**/*"]
}

@ -5,6 +5,7 @@
"outDir": "./dist",
"resolveJsonModule": true,
"esModuleInterop": true,
"composite": true
},
"include": ["./src/**/*"]
}

@ -29,8 +29,7 @@
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"jest": "jest",
"build": "rm -rf dist && tsc -p tsconfig.json",
"storybook": "start-storybook -p 6006",
"dev": "tsc -p --watch --preserveWatchOutput tsconfig.json"
"storybook": "start-storybook -p 6006"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",

@ -3,7 +3,8 @@
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"importsNotUsedAsValues": "preserve"
"importsNotUsedAsValues": "preserve",
"composite": true
},
"include": ["./src/**/*"],
"exclude": ["**/*.stories.tsx", "**/*.stories.js"]

@ -10,6 +10,11 @@
{ "path": "./packages/api-client" },
{ "path": "./packages/ui-client" },
{ "path": "./packages/ui-contexts" },
{ "path": "./packages/favicon" },
{ "path": "./packages/gazzodown" },
{ "path": "./packages/ui-client" },
{ "path": "./packages/models" },
{ "path": "./packages/model-typings" },
// { "path": "./packages/livechat" },
]
}

Loading…
Cancel
Save