├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── dev.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── CHANGELOG ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cjs-stub.js ├── index.js ├── mjs-stub.js ├── package.json ├── scripts └── plugin.mjs └── test ├── .gitkeep ├── fixtures ├── babel.js │ └── 0 │ │ ├── package.json │ │ └── test.babel.js ├── babel.jsx │ └── 0 │ │ ├── package.json │ │ └── test.babel.jsx ├── babel.ts │ └── 0 │ │ ├── package.json │ │ └── test.babel.ts ├── babel.tsx │ └── 0 │ │ ├── data.babel.tsx │ │ ├── package.json │ │ └── test.babel.tsx ├── cjs │ ├── 0 │ │ ├── package.json │ │ ├── rechoir.js │ │ └── test.cjs │ └── 1 │ │ ├── package.json │ │ ├── rechoir.js │ │ └── test.cjs ├── coffee.md │ └── 0 │ │ ├── package.json │ │ └── test.coffee.md ├── coffee │ └── 0 │ │ ├── package.json │ │ └── test.coffee ├── cts │ └── 0 │ │ ├── package.json │ │ ├── test.cts │ │ └── tsconfig.json ├── esbuild.js │ └── 0 │ │ ├── package.json │ │ └── test.esbuild.js ├── esbuild.jsx │ └── 0 │ │ ├── package.json │ │ └── test.esbuild.jsx ├── esbuild.ts │ └── 0 │ │ ├── package.json │ │ └── test.esbuild.ts ├── esbuild.tsx │ └── 0 │ │ ├── package.json │ │ └── test.esbuild.tsx ├── esm.js │ └── 0 │ │ ├── package.json │ │ └── test.esm.js ├── js │ └── 0 │ │ ├── package.json │ │ └── test.js ├── json │ └── 0 │ │ ├── package.json │ │ └── test.json ├── json5 │ └── 0 │ │ ├── package.json │ │ └── test.json5 ├── jsx │ ├── 0 │ │ ├── package.json │ │ └── test.jsx │ └── 1 │ │ ├── package.json │ │ └── test.jsx ├── litcoffee │ └── 0 │ │ ├── package.json │ │ └── test.litcoffee ├── mdx │ └── 0 │ │ ├── package.json │ │ └── test.mdx ├── mjs │ ├── 0 │ │ ├── package.json │ │ └── test.mjs │ └── 1 │ │ ├── package.json │ │ └── test.mjs ├── sucrase.js │ └── 0 │ │ ├── package.json │ │ └── test.sucrase.js ├── sucrase.jsx │ └── 0 │ │ ├── package.json │ │ └── test.sucrase.jsx ├── sucrase.ts │ └── 0 │ │ ├── package.json │ │ └── test.sucrase.ts ├── sucrase.tsx │ └── 0 │ │ ├── package.json │ │ └── test.sucrase.tsx ├── swc.js │ └── 0 │ │ ├── package.json │ │ └── test.swc.js ├── swc.jsx │ └── 0 │ │ ├── package.json │ │ └── test.swc.jsx ├── swc.ts │ └── 0 │ │ ├── package.json │ │ └── test.swc.ts ├── swc.tsx │ └── 0 │ │ ├── package.json │ │ └── test.swc.tsx ├── toml │ └── 0 │ │ ├── package.json │ │ └── test.toml ├── ts │ ├── 0 │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── 1 │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── 2 │ │ ├── package.json │ │ └── test.ts │ ├── 3 │ │ ├── package.json │ │ └── test.ts │ └── 4 │ │ ├── package.json │ │ └── test.ts ├── tsx │ ├── 0 │ │ ├── package.json │ │ ├── test.tsx │ │ └── tsconfig.json │ ├── 1 │ │ ├── package.json │ │ ├── test.tsx │ │ └── tsconfig.json │ ├── 2 │ │ ├── data.tsx │ │ ├── package.json │ │ └── test.tsx │ ├── 3 │ │ ├── data.tsx │ │ ├── package.json │ │ └── test.tsx │ └── 4 │ │ ├── package.json │ │ └── test.tsx ├── yaml │ └── 0 │ │ ├── package.json │ │ └── test.yaml └── yml │ └── 0 │ ├── package.json │ └── test.yml └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | .nyc_output/ 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/README.md -------------------------------------------------------------------------------- /cjs-stub.js: -------------------------------------------------------------------------------- 1 | require.extensions['.cjs'] = null; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/index.js -------------------------------------------------------------------------------- /mjs-stub.js: -------------------------------------------------------------------------------- 1 | require.extensions['.mjs'] = null; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/package.json -------------------------------------------------------------------------------- /scripts/plugin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/scripts/plugin.mjs -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/babel.js/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.js/0/package.json -------------------------------------------------------------------------------- /test/fixtures/babel.js/0/test.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.js/0/test.babel.js -------------------------------------------------------------------------------- /test/fixtures/babel.jsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.jsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/babel.jsx/0/test.babel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.jsx/0/test.babel.jsx -------------------------------------------------------------------------------- /test/fixtures/babel.ts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.ts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/babel.ts/0/test.babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.ts/0/test.babel.ts -------------------------------------------------------------------------------- /test/fixtures/babel.tsx/0/data.babel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.tsx/0/data.babel.tsx -------------------------------------------------------------------------------- /test/fixtures/babel.tsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.tsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/babel.tsx/0/test.babel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/babel.tsx/0/test.babel.tsx -------------------------------------------------------------------------------- /test/fixtures/cjs/0/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/cjs/0/rechoir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cjs/0/rechoir.js -------------------------------------------------------------------------------- /test/fixtures/cjs/0/test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cjs/0/test.cjs -------------------------------------------------------------------------------- /test/fixtures/cjs/1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/cjs/1/rechoir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cjs/1/rechoir.js -------------------------------------------------------------------------------- /test/fixtures/cjs/1/test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cjs/1/test.cjs -------------------------------------------------------------------------------- /test/fixtures/coffee.md/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/coffee.md/0/package.json -------------------------------------------------------------------------------- /test/fixtures/coffee.md/0/test.coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/coffee.md/0/test.coffee.md -------------------------------------------------------------------------------- /test/fixtures/coffee/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/coffee/0/package.json -------------------------------------------------------------------------------- /test/fixtures/coffee/0/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/coffee/0/test.coffee -------------------------------------------------------------------------------- /test/fixtures/cts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/cts/0/test.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cts/0/test.cts -------------------------------------------------------------------------------- /test/fixtures/cts/0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/cts/0/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/esbuild.js/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.js/0/package.json -------------------------------------------------------------------------------- /test/fixtures/esbuild.js/0/test.esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.js/0/test.esbuild.js -------------------------------------------------------------------------------- /test/fixtures/esbuild.jsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.jsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/esbuild.jsx/0/test.esbuild.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.jsx/0/test.esbuild.jsx -------------------------------------------------------------------------------- /test/fixtures/esbuild.ts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.ts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/esbuild.ts/0/test.esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.ts/0/test.esbuild.ts -------------------------------------------------------------------------------- /test/fixtures/esbuild.tsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.tsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/esbuild.tsx/0/test.esbuild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esbuild.tsx/0/test.esbuild.tsx -------------------------------------------------------------------------------- /test/fixtures/esm.js/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esm.js/0/package.json -------------------------------------------------------------------------------- /test/fixtures/esm.js/0/test.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/esm.js/0/test.esm.js -------------------------------------------------------------------------------- /test/fixtures/js/0/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/js/0/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/js/0/test.js -------------------------------------------------------------------------------- /test/fixtures/json/0/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/json/0/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/json/0/test.json -------------------------------------------------------------------------------- /test/fixtures/json5/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/json5/0/package.json -------------------------------------------------------------------------------- /test/fixtures/json5/0/test.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/json5/0/test.json5 -------------------------------------------------------------------------------- /test/fixtures/jsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/jsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/jsx/0/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/jsx/0/test.jsx -------------------------------------------------------------------------------- /test/fixtures/jsx/1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/jsx/1/package.json -------------------------------------------------------------------------------- /test/fixtures/jsx/1/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/jsx/1/test.jsx -------------------------------------------------------------------------------- /test/fixtures/litcoffee/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/litcoffee/0/package.json -------------------------------------------------------------------------------- /test/fixtures/litcoffee/0/test.litcoffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/litcoffee/0/test.litcoffee -------------------------------------------------------------------------------- /test/fixtures/mdx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/mdx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/mdx/0/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/mdx/0/test.mdx -------------------------------------------------------------------------------- /test/fixtures/mjs/0/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/mjs/0/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/mjs/0/test.mjs -------------------------------------------------------------------------------- /test/fixtures/mjs/1/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/mjs/1/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/mjs/1/test.mjs -------------------------------------------------------------------------------- /test/fixtures/sucrase.js/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.js/0/package.json -------------------------------------------------------------------------------- /test/fixtures/sucrase.js/0/test.sucrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.js/0/test.sucrase.js -------------------------------------------------------------------------------- /test/fixtures/sucrase.jsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.jsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/sucrase.jsx/0/test.sucrase.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.jsx/0/test.sucrase.jsx -------------------------------------------------------------------------------- /test/fixtures/sucrase.ts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.ts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/sucrase.ts/0/test.sucrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.ts/0/test.sucrase.ts -------------------------------------------------------------------------------- /test/fixtures/sucrase.tsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.tsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/sucrase.tsx/0/test.sucrase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/sucrase.tsx/0/test.sucrase.tsx -------------------------------------------------------------------------------- /test/fixtures/swc.js/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.js/0/package.json -------------------------------------------------------------------------------- /test/fixtures/swc.js/0/test.swc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.js/0/test.swc.js -------------------------------------------------------------------------------- /test/fixtures/swc.jsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.jsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/swc.jsx/0/test.swc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.jsx/0/test.swc.jsx -------------------------------------------------------------------------------- /test/fixtures/swc.ts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.ts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/swc.ts/0/test.swc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.ts/0/test.swc.ts -------------------------------------------------------------------------------- /test/fixtures/swc.tsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.tsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/swc.tsx/0/test.swc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/swc.tsx/0/test.swc.tsx -------------------------------------------------------------------------------- /test/fixtures/toml/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/toml/0/package.json -------------------------------------------------------------------------------- /test/fixtures/toml/0/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/toml/0/test.toml -------------------------------------------------------------------------------- /test/fixtures/ts/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/0/package.json -------------------------------------------------------------------------------- /test/fixtures/ts/0/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/0/test.ts -------------------------------------------------------------------------------- /test/fixtures/ts/0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/0/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/ts/1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/1/package.json -------------------------------------------------------------------------------- /test/fixtures/ts/1/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/1/test.ts -------------------------------------------------------------------------------- /test/fixtures/ts/1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/1/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/ts/2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/2/package.json -------------------------------------------------------------------------------- /test/fixtures/ts/2/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/2/test.ts -------------------------------------------------------------------------------- /test/fixtures/ts/3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/3/package.json -------------------------------------------------------------------------------- /test/fixtures/ts/3/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/3/test.ts -------------------------------------------------------------------------------- /test/fixtures/ts/4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/4/package.json -------------------------------------------------------------------------------- /test/fixtures/ts/4/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/ts/4/test.ts -------------------------------------------------------------------------------- /test/fixtures/tsx/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/0/package.json -------------------------------------------------------------------------------- /test/fixtures/tsx/0/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/0/test.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/0/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/tsx/1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/1/package.json -------------------------------------------------------------------------------- /test/fixtures/tsx/1/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/1/test.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/1/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures/tsx/2/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/2/data.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/2/package.json -------------------------------------------------------------------------------- /test/fixtures/tsx/2/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/2/test.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/3/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/3/data.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/3/package.json -------------------------------------------------------------------------------- /test/fixtures/tsx/3/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/3/test.tsx -------------------------------------------------------------------------------- /test/fixtures/tsx/4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/4/package.json -------------------------------------------------------------------------------- /test/fixtures/tsx/4/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/tsx/4/test.tsx -------------------------------------------------------------------------------- /test/fixtures/yaml/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/yaml/0/package.json -------------------------------------------------------------------------------- /test/fixtures/yaml/0/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/yaml/0/test.yaml -------------------------------------------------------------------------------- /test/fixtures/yml/0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/yml/0/package.json -------------------------------------------------------------------------------- /test/fixtures/yml/0/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/fixtures/yml/0/test.yml -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulpjs/interpret/HEAD/test/index.js --------------------------------------------------------------------------------