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 1714dfd commit f713319
Show file tree
Hide file tree
Showing 3 changed files with 13 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 @@ -91,7 +91,7 @@
"@types/dockerode": "^3.3.14",
"@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
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@
"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 f713319

Please sign in to comment.