-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.tsconfig.json
40 lines (40 loc) · 1.09 KB
/
webpack.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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es6",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"es5", "es6", "es7", "es2018", "es2018.promise", "dom",
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"allowJs": true,
"checkJs": false,
"sourceMap": true,
"skipLibCheck": true,
"noImplicitReturns": false,
"noImplicitThis": false,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"suppressExcessPropertyErrors": true,
"noStrictGenericChecks": false,
"noImplicitUseStrict": true,
"jsx": "preserve",
"outDir": "out"
},
"include": [
"vendor/streams/core/lib",
"vendor/streams/ui/lib"
],
"exclude": [
]
}