Skip to content

Commit

Permalink
build: Fix deprecation (#1000)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer authored Feb 20, 2024
1 parent 9a7d169 commit 1f4666a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ module.exports = {
parser: 'vue-eslint-parser',

env: {
node: true,
browser: true,
es2021: true
},

plugins: [
'@typescript-eslint',
'vue',
],

extends: [
Expand All @@ -17,7 +19,8 @@ module.exports = {
],

parserOptions: {
ecmaVersion: 2020,
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
},

rules: {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "network-of-terms-demo",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
Expand Down

0 comments on commit 1f4666a

Please sign in to comment.