├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── ts-to-jsdoc └── ts-to-jsdoc.ts ├── index.ts ├── package.json ├── test ├── add-missing-jsdoc-func-exp.test.js ├── arrow-functions.test.js ├── basic.test.js ├── class-constructor-accessors.test.js ├── compare.js ├── correct-order.test.js ├── default-values.test.js ├── inferred-return-type.test.js ├── last-comment.test.js ├── multiline-jsdoc-newline-prefix.test.js ├── namespace.test.js ├── object-type-aliases.test.js ├── optional-params.test.js ├── overloaded-functions.test.js ├── preserve-param-desc-dash.test.js ├── project.test.js ├── remove-obsolete-params.test.js ├── remove-optional-wrapper.test.js ├── rest-params.test.js ├── return-type-reference.test.js ├── test-project │ ├── expected │ │ ├── additional.js │ │ └── file.js │ ├── src │ │ ├── additional.ts │ │ ├── exclude.ts │ │ └── file.ts │ └── tsconfig.json ├── type-imports.test.js ├── type-namespace.test.js ├── update-existing-params.test.js ├── variable-declarations-const-tag.test.js ├── variable-declarations.test.js └── variable-scoping.test.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/README.md -------------------------------------------------------------------------------- /bin/ts-to-jsdoc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("./ts-to-jsdoc.js") 3 | -------------------------------------------------------------------------------- /bin/ts-to-jsdoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/bin/ts-to-jsdoc.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/package.json -------------------------------------------------------------------------------- /test/add-missing-jsdoc-func-exp.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/add-missing-jsdoc-func-exp.test.js -------------------------------------------------------------------------------- /test/arrow-functions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/arrow-functions.test.js -------------------------------------------------------------------------------- /test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/basic.test.js -------------------------------------------------------------------------------- /test/class-constructor-accessors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/class-constructor-accessors.test.js -------------------------------------------------------------------------------- /test/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/compare.js -------------------------------------------------------------------------------- /test/correct-order.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/correct-order.test.js -------------------------------------------------------------------------------- /test/default-values.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/default-values.test.js -------------------------------------------------------------------------------- /test/inferred-return-type.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/inferred-return-type.test.js -------------------------------------------------------------------------------- /test/last-comment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/last-comment.test.js -------------------------------------------------------------------------------- /test/multiline-jsdoc-newline-prefix.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/multiline-jsdoc-newline-prefix.test.js -------------------------------------------------------------------------------- /test/namespace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/namespace.test.js -------------------------------------------------------------------------------- /test/object-type-aliases.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/object-type-aliases.test.js -------------------------------------------------------------------------------- /test/optional-params.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/optional-params.test.js -------------------------------------------------------------------------------- /test/overloaded-functions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/overloaded-functions.test.js -------------------------------------------------------------------------------- /test/preserve-param-desc-dash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/preserve-param-desc-dash.test.js -------------------------------------------------------------------------------- /test/project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/project.test.js -------------------------------------------------------------------------------- /test/remove-obsolete-params.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/remove-obsolete-params.test.js -------------------------------------------------------------------------------- /test/remove-optional-wrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/remove-optional-wrapper.test.js -------------------------------------------------------------------------------- /test/rest-params.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/rest-params.test.js -------------------------------------------------------------------------------- /test/return-type-reference.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/return-type-reference.test.js -------------------------------------------------------------------------------- /test/test-project/expected/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/expected/additional.js -------------------------------------------------------------------------------- /test/test-project/expected/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/expected/file.js -------------------------------------------------------------------------------- /test/test-project/src/additional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/src/additional.ts -------------------------------------------------------------------------------- /test/test-project/src/exclude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/src/exclude.ts -------------------------------------------------------------------------------- /test/test-project/src/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/src/file.ts -------------------------------------------------------------------------------- /test/test-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/test-project/tsconfig.json -------------------------------------------------------------------------------- /test/type-imports.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/type-imports.test.js -------------------------------------------------------------------------------- /test/type-namespace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/type-namespace.test.js -------------------------------------------------------------------------------- /test/update-existing-params.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/update-existing-params.test.js -------------------------------------------------------------------------------- /test/variable-declarations-const-tag.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/variable-declarations-const-tag.test.js -------------------------------------------------------------------------------- /test/variable-declarations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/variable-declarations.test.js -------------------------------------------------------------------------------- /test/variable-scoping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/test/variable-scoping.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurGH/ts-to-jsdoc/HEAD/tsconfig.json --------------------------------------------------------------------------------