Last active
February 10, 2024 00:01
-
-
Save seangwright/85927f56b7422f1862277a69c3399f53 to your computer and use it in GitHub Desktop.
VS Code workspace settings for a Kentico 12 MVC + Vue.js CLI project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"node_modules": true, | |
"obj": true, | |
"bin": true, | |
"*.csproj.user": true | |
}, | |
"search.exclude": { | |
"**/.git": true, | |
"**/package-lock.json": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/tmp": true, | |
"**/Content": true, | |
"**/Kentico": true, | |
}, | |
"[vue]": { | |
"editor.formatOnSave": true | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"[json]": { | |
"editor.formatOnSave": true | |
}, | |
"[html]": { | |
"editor.formatOnSave": true | |
}, | |
"[scss]": { | |
"editor.formatOnSave": true | |
}, | |
"[aspnetcorerazor]": { | |
"editor.formatOnSave": true | |
}, | |
"emmet.includeLanguages": { | |
"razor": "html", | |
"aspnetcorerazor": "html" | |
}, | |
// For stylelint | |
"css.validate": false, | |
"less.validate": false, | |
"scss.validate": false, | |
"eslint.autoFixOnSave": true, | |
"eslint.options": { | |
"extensions": [".html", ".js", ".vue"] | |
}, | |
"eslint.validate": [ | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
{ | |
"language": "html", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascript", | |
"autoFix": true | |
} | |
], | |
"vetur.validation.template": false, | |
/* https://github.com/prettier/prettier-vscode/issues/590#issuecomment-428654972*/ | |
"vetur.format.defaultFormatter.scss": "prettier", | |
"vetur.format.defaultFormatter.css": "prettier", | |
"vetur.format.defaultFormatter.js": "prettier", | |
"vetur.format.defaultFormatter.html": "js-beautify-html", | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require("path"); | |
const isProd = process.env.NODE_ENV === "production"; | |
module.exports = { | |
outputDir: "./Content/dist/vue", | |
filenameHashing: false, | |
publicPath: "/Content/dist/vue", | |
productionSourceMap: true, | |
css: { | |
extract: true, | |
sourceMap: !isProd | |
}, | |
chainWebpack: config => { | |
config.plugins.delete("hmr"); | |
}, | |
configureWebpack: { | |
devtool: "source-map", | |
performance: { | |
maxEntrypointSize: 400000 | |
}, | |
resolve: { | |
alias: { | |
"@Views": path.join(__dirname, "Views"), | |
"@shared": path.join(__dirname, "src", "shared") | |
} | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment