Skip to content

Commit b48a96d

Browse files
feat: use ts and esbuild
1 parent 66fbf3f commit b48a96d

File tree

6 files changed

+8457
-7433
lines changed

6 files changed

+8457
-7433
lines changed

.eslintrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
env: {
3+
es2021: true,
4+
node: true
5+
},
6+
extends: [
7+
'standard'
8+
],
9+
parser: '@typescript-eslint/parser',
10+
parserOptions: {
11+
ecmaVersion: 12,
12+
sourceType: 'module'
13+
},
14+
plugins: [
15+
'@typescript-eslint'
16+
],
17+
rules: {
18+
}
19+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules/
2+
.idea/

0 commit comments

Comments
 (0)