From aa6573090f895aca96a67beec6352a45178caf4c Mon Sep 17 00:00:00 2001 From: Zack Schuster Date: Fri, 12 Jun 2020 14:59:04 -0700 Subject: [PATCH] chore: move addressparser types to separate folder --- smtp/{typings.d.ts => addressparser/index.d.ts} | 0 tsconfig.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename smtp/{typings.d.ts => addressparser/index.d.ts} (100%) diff --git a/smtp/typings.d.ts b/smtp/addressparser/index.d.ts similarity index 100% rename from smtp/typings.d.ts rename to smtp/addressparser/index.d.ts diff --git a/tsconfig.json b/tsconfig.json index b265e29..e48df99 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,8 +2,8 @@ "extends": "@ledge/configs/tsconfig.json", "include": [ "*.ts", - "smtp/*.ts", - "test/*.ts" + "smtp/**/*.ts", + "test/*.ts", ], "ts-node": { "transpileOnly": true,