-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
36 lines (36 loc) · 920 Bytes
/
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
{
"compilerOptions": {
"outDir": "./dist", // path to output directory
"baseUrl": ".",
"paths": {
"*": [
"./src/types/*"
]
},
"sourceMap": true, // allow sourcemap support
"declaration": true,
"strictNullChecks": true, // enable strict null checks as a best practice
"module": "commonjs", // specifiy module code generation
"target": "es5", // specify ECMAScript target version
"removeComments": false,
"preserveConstEnums": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"lib": [
"es5",
"es2015",
"es2015.iterable",
"es2015.collection",
"es2015.promise",
"es2016.array.include",
"dom"
]
},
"include": [
"./index.ts",
"./src/**/*"
]
}