Jan Akerman

Results 3 comments of Jan Akerman

I managed to get the task running without errors in grunt by defining a task and running dts-generator programatically: ``` grunt.task.registerTask('dts', '', function() { require('dts-generator').default({ name: 'package-name', project: '.', out:...

Yeah, my `tsconfig.json` is in src. I tried adding files to my `tsconfig.json` as follows: ``` { "compilerOptions": { ... }, "files": [ "./ClassA.ts", "./ModuleA.ts", "./ModuleB.ts" ] } ``` And...