-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
26 lines (26 loc) · 853 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
{
"compilerOptions": {
"emitDecoratorMetadata" : true,
"esModuleInterop" : true,
"experimentalDecorators" : true,
"inlineSourceMap" : false,
"inlineSources" : true,
"lib" : ["esnext", "dom", "dom.iterable"],
"module" : "esnext",
"moduleResolution" : "node",
"outDir" : ".building",
"pretty" : true,
"skipLibCheck" : true,
"sourceMap" : true,
"strict" : true,
"suppressImplicitAnyIndexErrors": true,
"target" : "esnext"
},
"include" : [
"declarations/**/*.d.ts",
"src/**/*.ts"
],
"exclude" : [
"**/~*"
]
}