-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (18 loc) · 921 Bytes
/
tsconfig.json
File metadata and controls
21 lines (18 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"strict": true, /* Enable all strict type-checking options. */
"sourceMap": true, //generiert map Datei zum Debugging
"inlineSources": true,
"target": "es2015",
"types": [
"jasmine"
],
"noEmitOnError": true, //Kein kompilieren bei Fehlern
"noImplicitAny": true, //Es wird nicht automatisch any gewählt, falls kein Typ angegeben ist
"strictNullChecks": true, //Fehler wenn null Variablen verwendet werden
"noUnusedParameters": false //Fehler bei nicht genutzten Parametern
}
}