1
0
Fork 0

tsconfig.json (include): Whitelist files to build

This ended up being necessary because the distdir was being considered and
resulting in duplicate symbols.
master
Mike Gerwitz 2019-10-21 10:27:46 -04:00
parent 813b1ccee9
commit cca36622eb
1 changed files with 6 additions and 2 deletions

View File

@ -15,6 +15,10 @@
"node_modules/*",
"src/types/*",
],
},
}
}
},
"include": [
"src/**/*",
"test/**/*"
]
}