From 26f45c3f20642ee6fe0fe595acb649d10933c3a9 Mon Sep 17 00:00:00 2001 From: Marius Riedl Date: Wed, 3 Nov 2021 17:13:36 +0100 Subject: [PATCH] Fix codestyle --- src/App.vue | 1 - tsconfig.json | 19 ++++--------------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/src/App.vue b/src/App.vue index 7abb067..2262e57 100644 --- a/src/App.vue +++ b/src/App.vue @@ -38,7 +38,6 @@ export default class App extends Vue {} url("../public/img/maps/de_inferno.jpg"); background-repeat: no-repeat; - background-size: cover; a { diff --git a/tsconfig.json b/tsconfig.json index 8c93ef5..329dd95 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,20 +12,11 @@ "allowSyntheticDefaultImports": true, "sourceMap": true, "baseUrl": ".", - "types": [ - "webpack-env" - ], + "types": ["webpack-env"], "paths": { - "@/*": [ - "src/*" - ] + "@/*": ["src/*"] }, - "lib": [ - "esnext", - "dom", - "dom.iterable", - "scripthost" - ] + "lib": ["esnext", "dom", "dom.iterable", "scripthost"] }, "include": [ "src/**/*.ts", @@ -34,7 +25,5 @@ "tests/**/*.ts", "tests/**/*.tsx" ], - "exclude": [ - "node_modules" - ] + "exclude": ["node_modules"] } -- 2.44.0