From 196437f91d7624d421b9535d909b0e97f7dd373d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Pluta?= Date: Tue, 1 Apr 2025 13:52:26 +0200 Subject: [PATCH] Create @ alias and ignore csv files in repo --- .gitignore | 3 ++- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eb0399d..2652286 100644 --- a/.gitignore +++ b/.gitignore @@ -147,4 +147,5 @@ dist result .direnv -.tmp \ No newline at end of file +.tmp +*.csv \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 20cb5cf..271b53a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "./node_modules/@types" ], "paths": { - "@types": ["./src/types"] + "@/*": ["./src/*"], } }, "include": ["src/**/*"],