├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── systemjs-babel.js ├── test ├── test.html ├── testing-code.js └── testing-dep.ts ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | dist/systemjs-babel.js 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/package.json -------------------------------------------------------------------------------- /src/systemjs-babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/src/systemjs-babel.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/test/test.html -------------------------------------------------------------------------------- /test/testing-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/test/testing-code.js -------------------------------------------------------------------------------- /test/testing-dep.ts: -------------------------------------------------------------------------------- 1 | export var p: number = 5; 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/systemjs-babel/HEAD/yarn.lock --------------------------------------------------------------------------------