forked from telekom-mms/aurelia-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.07 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"stripInternal": true,
"preserveConstEnums": true,
"skipLibCheck": true,
"declaration": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"useUnknownInCatchVariables": true,
"lib": [
"es2020",
"es2021.intl",
"dom"
],
/*
Required for moment()
import moment = require('moment');
@see https://momentjscom.readthedocs.io/en/latest/moment/00-use-it/09-typescript/
*/
"moduleResolution": "node",
"outDir": "dist",
"baseUrl": "src"
},
"exclude": [
"node_modules",
"dist"
]
}