Skip to content

Commit

Permalink
fix: tsconfig vue
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <[email protected]>
  • Loading branch information
skjnldsv committed Dec 30, 2024
1 parent 19eee44 commit 5ec7d62
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
18 changes: 5 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"@types/dockerode": "^3.3.20",
"@types/jest": "^29.5.1",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.1.3",
"@vue/tsconfig": "^0.5.1",
"@vue/vue2-jest": "^29.2.6",
"autoprefixer": "^10.4.14",
"babel-loader-exclude-node-modules-except": "^1.2.1",
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@
"noImplicitAny": false,
"resolveJsonModule": true
},
"vueCompilerOptions": {
"target": 2.7
},
"ts-node": {
// these options are overrides used only by ts-node
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
"moduleResolution": "node",
"module": "commonjs",
"verbatimModuleSyntax": false
}
}
}

0 comments on commit 5ec7d62

Please sign in to comment.