/ts-seed

In this repository we setup our playground to learn about the essential features of typescript

www.co-IT.eu

TypeScript Seed

https://www.typescriptlang.org/

TypeScript Configuration

// tsconfig.json

{
  "compilerOptions": {
    "outDir": "./dist/",
    "module": "commonjs",
    "target": "es5"
  }
}

Webpack Configuration

// webpack.config.js

module.exports = {
  entry: './src/app.module.ts',
  output: { filename: './dist/app.js' },
  resolve: { extensions: ['.ts'] },
  module: {
    loaders: [{ test: /\.ts$/, loader: 'awesome-typescript-loader' }]
  }
};