You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
per #603, I have this at the top of one of my files:
/**
* @copyright <our copyright here>
*/
/** ignore this comment */
import * as _ from "lodash";
but it is not reflected in the output produced by generateJson(). Is this expected?
Here are how my options are configured:
target: "ES6",
excludeExternals: false,
ignoreCompilerErrors: true,
mode: "module",
experimentalDecorators: true
Any help would be appreciated!
The text was updated successfully, but these errors were encountered:
Could you provide an example of where this fails? I just checked and was unable to reproduce with your options (after changing mode to "modules" - "module" isn't a valid value)
// File is in the root of the TypeDoc repo, I added a module comment to paths.ts for testing purposes.consttd=require('./dist');constapp=newtd.Application({target: 'es6',excludeExternals: false,ignoreCompilerErrors: true,mode: 'modules',experimentalDecorators: true});constresult=app.generateJson(['./src/lib/utils/paths.ts'],'./test.json');console.log(result);
per #603, I have this at the top of one of my files:
but it is not reflected in the output produced by generateJson(). Is this expected?
Here are how my options are configured:
target: "ES6",
excludeExternals: false,
ignoreCompilerErrors: true,
mode: "module",
experimentalDecorators: true
Any help would be appreciated!
The text was updated successfully, but these errors were encountered: