Skip to content

Commit 7629fc6

Browse files
authored
Merge pull request #134 from Nick-Lucas/chore/refactor-ref-loading
Break up Git.ts, migrate more of application to Typescript
2 parents 07cb4e7 + aa131ac commit 7629fc6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+2185
-1865
lines changed

.eslintrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"*.jsx"
3333
],
3434
"rules": {
35-
"prefer-const": "warn",
35+
"prefer-const": ["error", {
36+
"destructuring": "all"
37+
}],
3638
"no-console": "off",
3739
"no-loop-func": "warn",
3840
"new-cap": "off",

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"search.exclude": {
33
"build/": true,
44
"dist/": true
5-
}
5+
},
6+
"typescript.tsdk": "node_modules/typescript/lib"
67
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"devDependencies": {
1717
"@babel/eslint-parser": "^7.15.4",
1818
"@types/jest": "^27.0.1",
19+
"@types/lodash": "^4.14.175",
1920
"@typescript-eslint/eslint-plugin": "^4.31.0",
2021
"@typescript-eslint/parser": "^4.31.0",
2122
"eslint": "^7.32.0",
@@ -35,7 +36,7 @@
3536
"run-script-os": "^1.1.1",
3637
"ts-jest": "^27.0.5",
3738
"tslib": "^2.3.1",
38-
"typescript": "^4.4.2",
39+
"typescript": "^4.4.4",
3940
"wsrun": "^5.2.1"
4041
}
4142
}

0 commit comments

Comments
 (0)