File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,9 @@ export interface AutoSnapshotConfig {
1111
1212export class AutoSnapshotManager {
1313 private config : AutoSnapshotConfig ;
14- private intervalId : NodeJS . Timeout | null = null ;
14+ private intervalId : number | null = null ;
1515 private changeCount = 0 ;
1616 private lastSaveTime = 0 ;
17- private significantChangeThreshold = 10 ;
1817
1918 constructor ( config : AutoSnapshotConfig ) {
2019 this . config = config ;
Original file line number Diff line number Diff line change 2121 "noFallthroughCasesInSwitch" : true
2222 },
2323 "include" : [" src" ],
24+ "exclude" : [
25+ " src/**/*.test.ts" ,
26+ " src/**/*.test.tsx" ,
27+ " src/**/__tests__" ,
28+ " src/setupTests.ts"
29+ ],
2430 "references" : [{ "path" : " ./tsconfig.node.json" }]
2531}
You can’t perform that action at this time.
0 commit comments