From 392af389653846803afb4ddae1ce708268b232b4 Mon Sep 17 00:00:00 2001 From: Alexis <35.alexis.pele@gmail.com> Date: Sun, 18 Jul 2021 20:04:49 +0200 Subject: [PATCH] Updated tsconfig --- tsconfig.json | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b88caa1..36e73d6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,20 +1,22 @@ { "compilerOptions": { "module": "commonjs", - "esModuleInterop": true, - "target": "es6", + "declaration": true, + "removeComments": true, "noImplicitAny": true, - "moduleResolution": "node", + "alwaysStrict": true, + "charset": "utf-8", + "allowSyntheticDefaultImports": true, + "target": "es2017", "sourceMap": true, - "outDir": "dist", - "baseUrl": ".", - "paths": { - "*": [ - "node_modules/*" - ] - } - }, - "include": [ - "src/**/*" - ] + "outDir": "./dist", + "esModuleInterop": true, + "baseUrl": "./", + "incremental": true, + "types": [ + "node", + "express", + "sequelize" + ], + } }