GithubHelp home page GithubHelp logo

typescript_example's Introduction

Simple TypeScript example

  • src - has the TypeScript source files
  • dist - where javascript that TypeScript "compiles" to go.
  • node_modules - where the npm packages are installed to.
  • package.json - file that defines the package
  • tsconfig.json- file that with options for typescript's compiler

package.json

"devDependencies": {
  "@types/node": "^10.12.21",
  "ts-node": "^8.0.2",
  "typescript": "^3.3.1"
}

The dependencies needed to create the final package.

"scripts": {
  "build": "tsc",
  "watch": "tsc -w",
  "example": "ts-node src/index.ts"
},
  • npm run build compiles the TypeScript in src and puts it dist.
  • npm run watch will recompile when a file changes.
  • npm run example compiles and runs TypeScript file src/index.ts.

tsconfig.json

{
   "compileOnSave": true,  <-- editors with typescript support will recompile on save
   "compilerOptions": {
       "module": "commonjs",
       "lib": ["es6", "dom"],
       "noImplicitAny" : false, <--- Example option for how strict the compiler is
       "outDir": "dist",        <--- Where to put the output files
       "declaration": true,     <--- Creates '.d.ts' file, which define the types of the generated javascript
       "target": "es5"          <--- Which version of EMCAScript to compile to.
   },
   "include": [  <-- files to becompiled
    "src/**/*"
  ]
}

Setup

To get started install the needed packages with npm install.

Run code

To run a javascript file:

node dist/index.js

or to compile and run the TypeScript, install ts-node globally. npm install -g ts-node

ts-node src/index.ts

Note ts-node is installed in node_modules, so it can be used in the scripts section of the package.json, or called directly,

node_modules/ts-node/dist/bin.js src/index.ts

typescript_example's People

Contributors

willemneal avatar

Watchers

James Cloos avatar  avatar  avatar

Forkers

arasevic

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.