Skip to main content

14 docs tagged with "Compiler Options"

View All Tags

.map

.map is defined as: file to bridge JS to TS input file (.TS). Topics on: generates app.js.map, allows inspecting .ts code Browser (Sources tab). Read more: JS,

'compilerOptions'

'compilerOptions'. Topics on: /*Language and Environment */ settings, /* Modules */, /* Emit */, /* Type Checking */. Read more: JS, TS, TS Def, TSC, TSC Comman

'lib': []

'lib': [] is defined as: to set which default objects & features TSC knows. Topics on: 'lib': [] defaults to JS Library & Web API for Browser Runtime, 'target':

'noEmit': true

'noEmit': true is defined as: to disable outputting any files. Topics on: 'noEmit': true used to run TSC for Type-Checking only. Read more: JS, TS, TS Def, TSC,

'noEmitOnError': true

'noEmitOnError': true is defined as: to disable ANY output file if any type errors found. Topics on: 'noEmitOnError': true will prevent output of even correctly

'noImplicitAny': true

'noImplicitAny': true is defined as: to throw Exception when any Parameter inferred as any. Topics on: 'noImplicitAny': true does not throw on Variable Declarat

'sourcemap': true

'sourcemap': true is defined as: to create .map ext for debug. Topics on: .map. Read more: JS, TS, TS Def, TSC, TSC Commands, Tsconfigjson, Compiler Options, Em

'strictNullChecks': true

'strictNullChecks': true is defined as: to throw Exception when access Variable which potentially be null/undefined. Topics on: . Read more: JS, TS, TS Def, TSC

'target': 'es2016'

'target': 'es2016' is defined as: to set ECMAScript version to Downlevel to. Topics on: Downlevel. Read more: JS, TS, TS Def, TSC, TSC Commands, Tsconfigjson, C

/* Emit */

/* Emit */. Topics on: 'declaration': true, 'sourcemap': true, 'outFile': './', 'outDir': './dist', 'rootDir': './', 'removeComments': true, 'noEmit': true, 'no

/* Modules */

/* Modules */. Topics on: 'module': 'commonjs', 'resolveJsonModule': true. Read more: JS, TS, TS Def, TSC, TSC Commands, Tsconfigjson, Compiler Options|Dev Wiki

/* Type Checking */

/* Type Checking */. Topics on: 'strict': true, 'noImplicitAny': true, 'strictNullChecks': true, 'strictFunctionTypes': true, 'strictBindCallApply': true, 'stri

/*Language and Environment */ settings

/*Language and Environment */ settings. Topics on: 'target': 'es2016', 'lib': []. Read more: JS, TS, TS Def, TSC, TSC Commands, Tsconfigjson, Compiler Options

Downlevel

Downlevel is defined as: (TS term) to Transpile to older JS version. Topics on: set TS compiler to target ES5 for index.ts. Read more: JS, TS, TS Def, TSC, TSC