~xenrox/10man-web

26f45c3f20642ee6fe0fe595acb649d10933c3a9 — Marius Riedl 2 years ago 5ea436e
Fix codestyle
2 files changed, 4 insertions(+), 16 deletions(-)

M src/App.vue
M tsconfig.json
M src/App.vue => src/App.vue +0 -1
@@ 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 {

M tsconfig.json => tsconfig.json +4 -15
@@ 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"]
}