Skip to content

Commit 8b1ad92

Browse files
committedDec 18, 2024
update linting with typescript error...
1 parent 11d7d5c commit 8b1ad92

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed
 

‎.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Debug Quasar Build",
8+
"skipFiles": ["<node_internals>/**"],
9+
"program": "${workspaceFolder}/node_modules/.bin/quasar",
10+
"args": ["build"],
11+
"console": "integratedTerminal",
12+
"internalConsoleOptions": "neverOpen",
13+
"cwd": "${workspaceFolder}"
14+
}
15+
]
16+
}

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build": "quasar build",
1010
"dev": "quasar dev",
1111
"format": "prettier --write \"**/*.{js,ts,vue,,html,md,json}\" --ignore-path .gitignore",
12-
"lint": "tsc --noEmit && eslint -c ./eslint.config.js './src*/**/*.{ts,js,cjs,mjs,vue}'"
12+
"lint": "vue-tsc --noEmit && eslint -c ./eslint.config.js './src*/**/*.{ts,js,cjs,mjs,vue}'"
1313
},
1414
"browserslist": [
1515
"last 10 Chrome versions",
@@ -133,4 +133,4 @@
133133
"yarn": ">= 1.21.1"
134134
},
135135
"productName": "Taskyon App"
136-
}
136+
}

0 commit comments

Comments
 (0)
Please sign in to comment.