diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2019-10-21 10:27:46 -0400 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2019-10-21 10:27:47 -0400 |
commit | cca36622eb65b4f658aefd8c513d75bc7d79b342 (patch) | |
tree | dd928ea09f8f79795e4f95bd7d35081c2eb38dcc /tsconfig.json | |
parent | 813b1ccee91f4b0d4fea52d1f43fbbe7a943b07f (diff) | |
download | liza-cca36622eb65b4f658aefd8c513d75bc7d79b342.tar.gz liza-cca36622eb65b4f658aefd8c513d75bc7d79b342.tar.bz2 liza-cca36622eb65b4f658aefd8c513d75bc7d79b342.zip |
tsconfig.json (include): Whitelist files to build
This ended up being necessary because the distdir was being considered and
resulting in duplicate symbols.
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index 089f208..83b8f5e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,10 @@ "node_modules/*", "src/types/*", ], - }, - } + } + }, + "include": [ + "src/**/*", + "test/**/*" + ] } |