Skip to content

Commit c74e403

Browse files
Copilotmheap
andcommitted
Convert project to TypeScript
Co-authored-by: mheap <[email protected]>
1 parent c8d91b5 commit c74e403

File tree

9 files changed

+2785
-471
lines changed

9 files changed

+2785
-471
lines changed

.eslintrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"parser": "@typescript-eslint/parser",
23
"parserOptions": {
34
"ecmaVersion": 2020,
45
"impliedStrict": true,
@@ -9,7 +10,8 @@
910
}
1011
},
1112
"plugins": [
12-
"prettier"
13+
"prettier",
14+
"@typescript-eslint"
1315
],
1416
"rules": {
1517
"prettier/prettier": "error"

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
node_modules
2+
dist
3+
*.js
4+
*.d.ts
5+
*.d.ts.map
6+
*.js.map
7+
!jest.config.js
8+
!.eslintrc.js

0 commit comments

Comments
 (0)