Package Exports
- ts-loader
- ts-loader/package
- ts-loader/package.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
TypeScript loader for webpack
Usage
Installation
npm install ts-loader
Upgrading
Take advantage of the Changelog and Upgrade Guide.
Running
Use webpack like normal, including webpack --watch
and webpack-dev-server
, or through another
build system using the Node.js API.
Configuration
- Add
.ts
as a resolvable extension. - Configure all files with a
.ts
extension to be handled byts-loader
.
module.exports = {
entry: './app.ts',
resolve: {
extensions: ['', '.webpack.js', '.web.js', '.js', '.ts']
},
module: {
loaders: [
{ test: /\.ts$/, loader: 'ts-loader' }
]
}
}
Options
Most TypeScript-related options should be set using a tsconfig.json file. There are a few loader-specific options you can set although in general you should not need to.
compiler (string) (default='typescript')
Allows use of TypeScript compilers other than the official one. Should be set to the NPM name of the compiler.
instance (string)
Advanced option to force files to go through different instances of the TypeScript compiler. Can be used to force segregation between different parts of your code.
configFileName (string) (default=tsconfig.json)
Allows you to specify a custom configuration file.
Loading other resources and code splitting
Loading css and other resources is possible but you will need to make sure that
you have defined the require
function in a declaration file.
declare var require: {
<T>(path: string): T;
(paths: string[], callback: (...modules: any[]) => void): void;
ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void) => void;
};
Then you can simply require assets or chunks per the webpack documentation.
require('!style!css!./style.css');
React JSX
This loader supports using jsx-typescript.
Simply install jsx-typescript and use the compiler=jsx-typescript
option. Note that you
will need to use ts-loader@0.3.x in order to use this as 0.4.x and above is not API-compatible.
You may also be interested in using ts-jsx-loader.
Building from source
tsd reinstall
npm install
tsc index.ts --module commonjs
License
The MIT License (MIT)
Copyright (c) 2015 James Brantly
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.