About
The tsconfig.json file specifies:
- the root directory
Example
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es6",
"jsx": "react",
"allowJs": true
}
}
where:
- compilerOptions are the compiler option where:
- module defines in which module module typescript script are written (ie require for CommonJs or import for es6)
Management
Gui
The Playground has a GUI