Skip to content

Commit

Permalink
Converted package to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
skooch committed Oct 18, 2023
1 parent 1963153 commit 957e380
Show file tree
Hide file tree
Showing 35 changed files with 8,039 additions and 3,692 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

29 changes: 14 additions & 15 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/* eslint-env node */
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended'
],
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'jest'
],
env: {
es6: true,
node: true,
'jest/globals': true
"jest/globals": true
},
extends: 'standard',
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: ['jest'],
rules: {}
}
root: true,
};
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-typescript'
]
}
Loading

0 comments on commit 957e380

Please sign in to comment.