Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
/ ts-seed Public archive

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

Notifications You must be signed in to change notification settings

ng-practice/ts-seed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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' }]
  }
};

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published