From ced5c3eef47e90ffdd7b7b896cd41a9cac7744f0 Mon Sep 17 00:00:00 2001 From: Yusuf Yilmaz Date: Fri, 27 May 2022 15:12:00 +0200 Subject: [PATCH] Fix --- .gitignore | 2 +- tsconfig.json | 2 +- tsconfig.lint.json | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 tsconfig.lint.json diff --git a/.gitignore b/.gitignore index a6aa1df..64cf93e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,4 @@ node_modules data *.DS_Store docker-compose.override.yml -dist \ No newline at end of file +dist diff --git a/tsconfig.json b/tsconfig.json index edc2493..7a2b2b1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,6 +32,6 @@ "~/*": ["/src/*"] } }, - "include": ["src", "global.d.ts", "**/*.ts"], + "include": ["src", "**/*.ts"], "exclude": ["node_modules"] } diff --git a/tsconfig.lint.json b/tsconfig.lint.json deleted file mode 100644 index 43422a6..0000000 --- a/tsconfig.lint.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extends": "./tsconfig.json", - "include": ["src"], - "exclude": ["node_modules", "dist", "coverage"] - } \ No newline at end of file