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 tsify@0.15.5, 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"
]
}
Hi there!
My team is using tsify with Gulp to build a whole bunch of TypeScript files. We have a
tsconfig.jsonfile in our root to satisfy our editors, but we don't use it in our build system.Up until
tsify@0.15.5, 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 to0.14.8as a result.Is there an option to turn off consumption of
tsconfig.json?For reference, our
tsconfig.jsonfile 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" ] }