-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathtsconfig.strict.json
33 lines (33 loc) · 963 Bytes
/
tsconfig.strict.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
{
"extends": "./tsconfig",
"compilerOptions": {
"removeComments": false,
"preserveConstEnums": true,
"inlineSourceMap": true,
"inlineSources": true,
"declaration": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
},
"files": [
"src/extra/buffer.ts",
"src/extra/concat.ts",
"src/extra/debounce.ts",
"src/extra/delay.ts",
"src/extra/dropRepeats.ts",
"src/extra/dropUntil.ts",
"src/extra/flattenSequentially.ts",
"src/extra/flattenConcurrently.ts",
"src/extra/flattenConcurrentlyAtMost.ts",
"src/extra/fromDiagram.ts",
"src/extra/fromEvent.ts",
"src/extra/pairwise.ts",
"src/extra/sampleCombine.ts",
"src/extra/split.ts",
"src/extra/throttle.ts",
"src/extra/tween.ts",
"src/index.ts"
],
}