-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (24 loc) · 736 Bytes
/
tsconfig.json
File metadata and controls
31 lines (24 loc) · 736 Bytes
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
{
"compilerOptions" : {
"experimentalDecorators" : true,
"noImplicitThis" : true,
"strictBindCallApply" : true,
// https://github.com/microsoft/TypeScript/issues/29872#issuecomment-868535962
"strictPropertyInitialization" : false,
"target" : "es2017",
"sourceMap" : false,
"lib" : [
"esnext"
],
"module" : "esnext",
"moduleResolution" : "node",
"allowSyntheticDefaultImports" : true
},
"include" : [
"index.ts",
"src/**/*.ts",
"tests/**/*.ts",
],
"exclude" : [
]
}