scrimba
Understanding Typescript In Depth
Understanding Typescript & its Compiler TSC #02
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Understanding Typescript & its Compiler TSC #02
AboutCommentsNotes
Understanding Typescript & its Compiler TSC #02
Expand for more info
tsconfig.json
run
preview
console
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"strictNullChecks": true
},
"exclude": [
"node_modules"
]
}
Console
"Hello from JavaScript"
,
index.html
-4:25