Skip to content
Snippets Groups Projects
Unverified Commit 80ae54e3 authored by gabriellsh's avatar gabriellsh Committed by GitHub
Browse files

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

parent decb0969
No related branches found
No related tags found
No related merge requests found
......@@ -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" },
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment