Given that we are now using tsconfig.json we shouldn't need reference directives in our typings files. It works fine, except when you then need to depend on something that then depends on node.d.ts and you then start getting duplicate definition errors in the build process.
Obviously they are still working on the typings, but for now, it might make sense to pull them out and make sure the tsconfig.json has the right information.
Given that we are now using
tsconfig.json
we shouldn't need reference directives in our typings files. It works fine, except when you then need to depend on something that then depends onnode.d.ts
and you then start getting duplicate definition errors in the build process.Obviously they are still working on the typings, but for now, it might make sense to pull them out and make sure the
tsconfig.json
has the right information.