Improve web infrastructure

Upgrade npm packages that were locked to old versions due to now-resolved problems
Remove unused/unnecessary dependencies and their configurations
Fix VS Code format on save
Fix VS Code removing EOF newline in JSON files in conflict with npm
Remove JSON files from ESLint because it doesn't properly support JSON
Add detailed comments to web-related configuration files
This commit is contained in:
Keavon Chambers
2021-08-26 19:20:38 -07:00
parent 0ccb181e2c
commit d2395b4dcf
9 changed files with 380 additions and 1067 deletions
-1
View File
@@ -3,7 +3,6 @@ import { createApp } from "vue";
import { fullscreenModeChanged } from "@/utilities/fullscreen";
import { onKeyUp, onKeyDown, onMouseMove, onMouseDown, onMouseUp, onMouseScroll, onWindowResize } from "@/utilities/input";
import "@/utilities/errors";
import App from "@/App.vue";
// Bind global browser events
+2
View File
@@ -1,8 +1,10 @@
// Allow JS import statements to work with .vue files
declare module "*.vue" {
const component: DefineComponent;
export default component;
}
// Allow JS import statements to work with .svg files
declare module "*.svg" {
const component: DefineComponent;
export default component;