TypeScript - tsconfig.json configuration file

About

The tsconfig.json file specifies:

Example

{
    "compilerOptions": {
        "outDir": "./dist/",
        "sourceMap": true,
        "noImplicitAny": true,
        "module": "commonjs",
        "target": "es6",
        "jsx": "react",
        "allowJs": true
    }
}

where:

Management

Gui

The Playground has a GUI

Typescript Playground Conf

Documentation





Discover More
Javascript Module - Import (Es Module)

This page is the import statement defined in the es module specification The ES6 import is: a function for dynamic import (performed at runtime time) or a statement for static import (performed...
React - Typescript

typescript integration in React Not all packages include declaration files. TypeScript will looks in the @types/react package. Install typescript and ts-loader...
Typescript Playground Conf
Typescript - tsc (official compiler)

tsc is the official compiler that transform/compile a typescript file into a javascript script Locally for a project Global With the global tsc cli With the playground...



Share this page:
Follow us:
Task Runner