├── .eslintrc.cjs ├── .github └── workflows │ ├── ci.yaml │ └── codeql-analysis.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── jest.config.json ├── package.json ├── renovate.json ├── src ├── main │ └── ts │ │ ├── cli.ts │ │ ├── finder.ts │ │ ├── fix.ts │ │ ├── fixes │ │ ├── fix-blank-files.ts │ │ ├── fix-default-export.ts │ │ ├── fix-dirname-var.ts │ │ ├── fix-module-ref.ts │ │ ├── fix-sourcemap-ref.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ ├── legacy.ts │ │ ├── options.ts │ │ └── util.ts ├── scripts │ ├── build-fix.js │ └── build.mjs └── test │ ├── fixtures │ ├── nestjs-swagger-project │ │ └── event.dto.js │ └── ts-project │ │ ├── node_modules │ │ ├── e1 │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ └── c │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── e2 │ │ │ ├── bar-bundle.js │ │ │ ├── baz-bundle.js │ │ │ ├── foo-bundle.js │ │ │ ├── index.d.ts │ │ │ ├── node_modules │ │ │ │ └── d1 │ │ │ │ │ ├── index.cjs │ │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── target │ │ │ │ └── index.js │ │ ├── e3 │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── x │ │ │ │ ├── x.d.ts │ │ │ │ ├── x.js │ │ │ │ ├── xx.d.ts │ │ │ │ └── xx.js │ │ │ ├── y │ │ │ │ ├── y.d.ts │ │ │ │ └── y.js │ │ │ └── z │ │ │ │ ├── index.d.ts │ │ │ │ ├── z.d.ts │ │ │ │ └── z.js │ │ └── m1 │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── src │ │ └── main │ │ │ └── ts │ │ │ ├── bar.ts │ │ │ ├── bar2.ts │ │ │ ├── baz │ │ │ └── index.ts │ │ │ ├── foo.ts │ │ │ ├── index-ref-2 │ │ │ └── index.ts │ │ │ ├── index-ref.ts │ │ │ ├── index.ts │ │ │ ├── json-data.json │ │ │ ├── only-types.ts │ │ │ ├── q │ │ │ └── u │ │ │ │ └── x │ │ │ │ └── index.ts │ │ │ └── qux.js │ │ │ └── index.ts │ │ ├── target │ │ ├── es5 │ │ │ ├── bar.d.ts │ │ │ ├── bar.js │ │ │ ├── bar.js.map │ │ │ ├── bar2.d.ts │ │ │ ├── bar2.js │ │ │ ├── bar2.js.map │ │ │ ├── baz │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── foo.js.map │ │ │ ├── index-ref-2 │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── index-ref.d.ts │ │ │ ├── index-ref.js │ │ │ ├── index-ref.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── json-data.json │ │ │ ├── only-types.d.ts │ │ │ ├── only-types.js │ │ │ ├── only-types.js.map │ │ │ ├── q │ │ │ │ └── u │ │ │ │ │ └── x │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ └── qux.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ └── es6 │ │ │ ├── bar.d.ts │ │ │ ├── bar.js │ │ │ ├── bar.js.map │ │ │ ├── bar2.d.ts │ │ │ ├── bar2.js │ │ │ ├── bar2.js.map │ │ │ ├── baz │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── foo.d.ts │ │ │ ├── foo.js │ │ │ ├── foo.js.map │ │ │ ├── index-ref-2 │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── index-ref.d.ts │ │ │ ├── index-ref.js │ │ │ ├── index-ref.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── json-data.json │ │ │ ├── only-types.d.ts │ │ │ ├── only-types.js │ │ │ ├── only-types.js.map │ │ │ ├── q │ │ │ └── u │ │ │ │ └── x │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── qux.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── tsconfig.es5.json │ │ ├── tsconfig.es6.json │ │ └── tsconfig.json │ ├── js │ ├── index.es6.js │ └── index.mjs.it.js │ └── ts │ ├── __snapshots__ │ └── fix.test.ts.snap │ ├── cli.test.ts │ ├── finder.test.ts │ ├── fix.test.ts │ └── index.test.ts ├── tsconfig.es6.json ├── tsconfig.json ├── tsconfig.test.json ├── typedoc.json └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/SECURITY.md -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main/ts/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/cli.ts -------------------------------------------------------------------------------- /src/main/ts/finder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/finder.ts -------------------------------------------------------------------------------- /src/main/ts/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fix.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/fix-blank-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/fix-blank-files.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/fix-default-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/fix-default-export.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/fix-dirname-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/fix-dirname-var.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/fix-module-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/fix-module-ref.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/fix-sourcemap-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/fix-sourcemap-ref.ts -------------------------------------------------------------------------------- /src/main/ts/fixes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/fixes/index.ts -------------------------------------------------------------------------------- /src/main/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/index.ts -------------------------------------------------------------------------------- /src/main/ts/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/interface.ts -------------------------------------------------------------------------------- /src/main/ts/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/legacy.ts -------------------------------------------------------------------------------- /src/main/ts/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/options.ts -------------------------------------------------------------------------------- /src/main/ts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/main/ts/util.ts -------------------------------------------------------------------------------- /src/scripts/build-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/scripts/build-fix.js -------------------------------------------------------------------------------- /src/scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/scripts/build.mjs -------------------------------------------------------------------------------- /src/test/fixtures/nestjs-swagger-project/event.dto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/nestjs-swagger-project/event.dto.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e1/a/b/c/index.d.ts: -------------------------------------------------------------------------------- 1 | export const e1: string 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e1/a/b/c/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { e1: 'e1' } 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e1/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const e1: string 2 | 3 | export = e1 -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e1/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/bar-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/bar-bundle.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/baz-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/baz-bundle.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/foo-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/foo-bundle.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/node_modules/d1/index.cjs: -------------------------------------------------------------------------------- 1 | export const d1 = 'd1' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/node_modules/d1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/node_modules/d1/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e2/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e2/target/index.js: -------------------------------------------------------------------------------- 1 | export const e2 = 'e2' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e3/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e3/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/x/x.d.ts: -------------------------------------------------------------------------------- 1 | export declare const x: string 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/x/x.js: -------------------------------------------------------------------------------- 1 | export const x = 'x' -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/x/xx.d.ts: -------------------------------------------------------------------------------- 1 | export declare const xx: string 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/x/xx.js: -------------------------------------------------------------------------------- 1 | export const xx = 'xx' -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/y/y.d.ts: -------------------------------------------------------------------------------- 1 | export declare const y: string 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/y/y.js: -------------------------------------------------------------------------------- 1 | export const y = 'y' -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/z/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const z: string 2 | 3 | export = z 4 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/z/z.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e3/z/z.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/e3/z/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/e3/z/z.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/m1/index.d.ts: -------------------------------------------------------------------------------- 1 | export const m1: string 2 | 3 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/m1/index.js: -------------------------------------------------------------------------------- 1 | export const m1 = 'm1' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/node_modules/m1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/node_modules/m1/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/package.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/bar.ts: -------------------------------------------------------------------------------- 1 | // side effect 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/bar2.ts: -------------------------------------------------------------------------------- 1 | // side effect 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/baz/index.ts: -------------------------------------------------------------------------------- 1 | export const baz = 'qux' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/foo.ts: -------------------------------------------------------------------------------- 1 | export const foo = 'bar' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/index-ref-2/index.ts: -------------------------------------------------------------------------------- 1 | export * from '..' -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/index-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/src/main/ts/index-ref.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/src/main/ts/index.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/json-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/src/main/ts/json-data.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/only-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/src/main/ts/only-types.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/q/u/x/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/src/main/ts/q/u/x/index.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/src/main/ts/qux.js/index.ts: -------------------------------------------------------------------------------- 1 | export const qux = 'q' 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // side effect 3 | //# sourceMappingURL=bar.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/bar.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar2.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar2.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // side effect 3 | //# sourceMappingURL=bar2.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/bar2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/bar2.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/baz/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const baz = "qux"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/baz/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/baz/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/baz/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/baz/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "bar"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/foo.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/foo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/foo.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref-2/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '..'; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index-ref-2/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref-2/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index-ref-2/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index-ref.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index-ref.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index-ref.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index-ref.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/json-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/json-data.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/only-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/only-types.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/only-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/only-types.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/only-types.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/only-types.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/q/u/x/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/q/u/x/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/q/u/x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/q/u/x/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/q/u/x/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/q/u/x/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/qux.js/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const qux = "q"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/qux.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/qux.js/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es5/qux.js/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es5/qux.js/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // side effect 3 | //# sourceMappingURL=bar.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/bar.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar2.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar2.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // side effect 3 | //# sourceMappingURL=bar2.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/bar2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/bar2.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/baz/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const baz = "qux"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/baz/index.js: -------------------------------------------------------------------------------- 1 | export const baz = 'qux'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/baz/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/baz/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/foo.d.ts: -------------------------------------------------------------------------------- 1 | export declare const foo = "bar"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/foo.js: -------------------------------------------------------------------------------- 1 | export const foo = 'bar'; 2 | //# sourceMappingURL=foo.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/foo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/foo.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref-2/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '..'; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref-2/index.js: -------------------------------------------------------------------------------- 1 | export * from '..'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref-2/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index-ref-2/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index-ref.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index-ref.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index-ref.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index-ref.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/json-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/json-data.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/only-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/only-types.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/only-types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=only-types.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/only-types.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/only-types.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/q/u/x/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/q/u/x/index.d.ts -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/q/u/x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/q/u/x/index.js -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/q/u/x/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/q/u/x/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/qux.js/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const qux = "q"; 2 | -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/qux.js/index.js: -------------------------------------------------------------------------------- 1 | export const qux = 'q'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/target/es6/qux.js/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/target/es6/qux.js/index.js.map -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/tsconfig.es5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/tsconfig.es5.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/tsconfig.es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/tsconfig.es6.json -------------------------------------------------------------------------------- /src/test/fixtures/ts-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/fixtures/ts-project/tsconfig.json -------------------------------------------------------------------------------- /src/test/js/index.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/js/index.es6.js -------------------------------------------------------------------------------- /src/test/js/index.mjs.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/js/index.mjs.it.js -------------------------------------------------------------------------------- /src/test/ts/__snapshots__/fix.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/ts/__snapshots__/fix.test.ts.snap -------------------------------------------------------------------------------- /src/test/ts/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/ts/cli.test.ts -------------------------------------------------------------------------------- /src/test/ts/finder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/ts/finder.test.ts -------------------------------------------------------------------------------- /src/test/ts/fix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/ts/fix.test.ts -------------------------------------------------------------------------------- /src/test/ts/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/src/test/ts/index.test.ts -------------------------------------------------------------------------------- /tsconfig.es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/tsconfig.es6.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antongolub/tsc-esm-fix/HEAD/yarn.lock --------------------------------------------------------------------------------