Skip to content

Commit

Permalink
feat: bump vite & typescript version and migrate to vitest (#78)
Browse files Browse the repository at this point in the history
* feat: bump vite & typescript version and migrate to vitest

* chore: update package-lock.json
  • Loading branch information
Chieffo2021 committed Jan 11, 2022
1 parent e51260d commit 5afee3c
Show file tree
Hide file tree
Showing 22 changed files with 18,744 additions and 8,319 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ module.exports = {
es2021: true,
node: true
},
extends: [
'standard'
],
extends: ['standard'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
plugins: [
'@typescript-eslint'
],
plugins: ['@typescript-eslint'],
rules: {
semi: 0
semi: 0,
'@typescript-eslint/consistent-type-imports': [
'error',
{ prefer: 'type-imports' }
]
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ dist
.settings
yarn.lock
.DS_Store
.vscode/
.vscode/
coverage
Loading

0 comments on commit 5afee3c

Please sign in to comment.