├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── example ├── AsyncComponent.ts ├── Button.ts ├── Makefile ├── index.css ├── index.html ├── index.ts ├── package.json ├── tsd.json ├── typings │ ├── react │ │ └── react.d.ts │ └── tsd.d.ts └── webpack.config.js ├── lib ├── TypeScriptWebpackHost.js ├── index.js └── webpack-runtime.d.ts └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules/ 2 | example/build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/README.md -------------------------------------------------------------------------------- /example/AsyncComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/AsyncComponent.ts -------------------------------------------------------------------------------- /example/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/Button.ts -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/index.css -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/tsd.json -------------------------------------------------------------------------------- /example/typings/react/react.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/typings/react/react.d.ts -------------------------------------------------------------------------------- /example/typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/typings/tsd.d.ts -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lib/TypeScriptWebpackHost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/lib/TypeScriptWebpackHost.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/webpack-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/lib/webpack-runtime.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreypopp/typescript-loader/HEAD/package.json --------------------------------------------------------------------------------