From c66e52f9df834e02be4e0a540d5527101d01ddc4 Mon Sep 17 00:00:00 2001 From: Jixun Wu Date: Sun, 7 May 2023 19:17:58 +0100 Subject: [PATCH] chore: remove webpack types --- tsconfig.json | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2bd2753..ab01804 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,13 +13,30 @@ "allowSyntheticDefaultImports": true, "sourceMap": true, "baseUrl": ".", - "types": ["webpack-env", "jest"], + "types": [ + "jest" + ], "paths": { - "@/*": ["src/*"] + "@/*": [ + "src/*" + ] }, - "lib": ["esnext", "dom", "dom.iterable", "scripthost"], + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ], "resolveJsonModule": true }, - "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"], - "exclude": ["node_modules"] -} + "include": [ + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.vue", + "tests/**/*.ts", + "tests/**/*.tsx" + ], + "exclude": [ + "node_modules" + ] +} \ No newline at end of file