We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ae33f3 + b057f87 commit 3c8f554Copy full SHA for 3c8f554
2 files changed
.changeset/fix-start-build-artifacts.md
@@ -0,0 +1,6 @@
1
+---
2
+"@patternfly/elements": patch
3
4
+
5
+`npm run start` no longer fails when TypeScript build artifacts
6
+are present in the working tree.
tsconfig.esbuild.json
@@ -9,7 +9,16 @@
9
"**/demo/*.d.ts",
10
"**/_temp/**/*",
11
"**/*.story.*",
12
- "**/test/*_e2e*"
+ "**/test/*_e2e*",
13
+ "elements/**/*.js",
14
+ "elements/**/*.d.ts",
15
+ "elements/**/*.js.map",
16
+ "core/**/*.js",
17
+ "core/**/*.d.ts",
18
+ "core/**/*.js.map",
19
+ "tools/**/*.js",
20
+ "tools/**/*.d.ts",
21
+ "tools/**/*.js.map"
22
],
23
"compilerOptions": {
24
"allowJs": true,
0 commit comments