remove old webpack stuff

This commit is contained in:
wh1te909
2022-05-18 03:21:44 +00:00
parent 23b85d44f3
commit a7d3b7f009
3 changed files with 0 additions and 26 deletions

9
src/env.d.ts vendored
View File

@@ -1,9 +0,0 @@
/* eslint-disable */
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: "hash" | "history" | "abstract" | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}

9
src/quasar.d.ts vendored
View File

@@ -1,9 +0,0 @@
/* eslint-disable */
// Forces TS to apply `@quasar/app-webpack` augmentations of `quasar` package
// Removing this would break `quasar/wrappers` imports as those typings are declared
// into `@quasar/app-webpack`
// As a side effect, since `@quasar/app-webpack` reference `quasar` to augment it,
// this declaration also apply `quasar` own
// augmentations (eg. adds `$q` into Vue component context)
/// <reference types="@quasar/app-webpack" />

8
src/shims-vue.d.ts vendored
View File

@@ -1,8 +0,0 @@
/* eslint-disable */
// Mocks all files ending in `.vue` showing them as plain Vue instances
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}