Skip to content

Commit 6a0d043

Browse files
committed
Fix build failure by removing TypeScript incremental compilation
1 parent 3a14878 commit 6a0d043

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
path: |
2424
dist
2525
.eslintcache
26-
**/.tsbuildinfo
2726
key: ${{ runner.os }}-build-${{ hashFiles('src/**/*', 'tsconfig.json', 'eslint.config.js') }}
2827
restore-keys: |
2928
${{ runner.os }}-build-

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ node_modules
44
.cache
55
.parcel-cache
66
.eslintcache
7-
*.tsbuildinfo
87
.jest
98
dist

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"esModuleInterop": true,
1818
"skipLibCheck": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"noEmit": true,
21-
"incremental": true
20+
"noEmit": true
2221
}
2322
}

0 commit comments

Comments
 (0)