From 4c45f4cf1364bdfc8c4d929e5c4299c1bcaeb073 Mon Sep 17 00:00:00 2001 From: Ryan Cebulko Date: Tue, 14 Dec 2021 17:36:13 -0500 Subject: [PATCH] Move third_party path def into tsconfig.base --- tsconfig.base.json | 4 +++- tsconfig.json | 4 ---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index a28205814c75f..bb78fa7c6b97c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -34,7 +34,9 @@ "#utils/*": ["./src/utils/*"], "#test/*": ["./test/*"], - "#testing/*": ["./testing/*"] + "#testing/*": ["./testing/*"], + + "#third_party/*": ["./third_party/*"] } }, diff --git a/tsconfig.json b/tsconfig.json index b8c4841b52d61..598670ff04cbb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,10 +4,6 @@ "compilerOptions": { "baseUrl": ".", "outDir": "dist", - - "paths": { - "#third_party/*": ["./third_party/*"] - } }, "include": ["src", "3p", "ads", "extensions", "test", "testing"]