From 6182ba1d8fb753b843a09cd36d710175d735bb36 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 13 Nov 2020 06:42:26 +0100 Subject: [PATCH] Use mostly standardized tsconfig (as generated from vuecli) --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8791cd90..89966ad9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,11 +3,15 @@ "target": "es2020", "module": "es2020", "strict": true, + "jsx": "preserve", + "importHelpers": true, "moduleResolution": "node", "experimentalDecorators": true, + "skipLibCheck": true, + "allowSyntheticDefaultImports": true, + "sourceMap": true, "noImplicitAny": false, "allowJs": true, - "sourceMap": true, "baseUrl": "src", "types": [ "webpack-env", @@ -25,5 +29,8 @@ "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx" + ], + "exclude": [ + "node_modules" ] }