Open
Description
Hi there!
My team is using tsify with Gulp to build a whole bunch of TypeScript files. We have a tsconfig.json
file in our root to satisfy our editors, but we don't use it in our build system.
Up until [email protected]
, that was okay, but with this update it seems like the plugin is now loading files from the tsconfig and our build system, which is bad. We've reverted to 0.14.8
as a result.
Is there an option to turn off consumption of tsconfig.json
?
For reference, our tsconfig.json
file looks like this:
{
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"moduleResolution": "node",
"experimentalDecorators": true,
"noEmitOnError": true
},
"files": [
"typings/main.d.ts",
"node_modules/app/common/core.ts",
"node_modules/app/client/main.ts",
"node_modules/app/server/main.ts"
]
}
Metadata
Metadata
Assignees
Labels
No labels