Run prettier

This commit is contained in:
Alexandru Dima 2021-11-12 10:55:50 +01:00
parent 734e1cb987
commit 9a52545094
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
9 changed files with 97 additions and 62 deletions

View file

@ -11,8 +11,8 @@ module.exports = {
},
resolve: {
alias: {
'monaco-editor': path.resolve(__dirname, '../../release'),
},
'monaco-editor': path.resolve(__dirname, '../../release')
}
},
module: {
rules: [
@ -26,7 +26,9 @@ module.exports = {
}
]
},
plugins: [new MonacoWebpackPlugin({
monacoEditorPath: path.resolve(__dirname, '../../release')
})]
plugins: [
new MonacoWebpackPlugin({
monacoEditorPath: path.resolve(__dirname, '../../release')
})
]
};