-
-
Notifications
You must be signed in to change notification settings - Fork 635
/
tsconfig.json
83 lines (83 loc) · 2.1 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"inferno": [
"packages/inferno/src/index.ts"
],
"inferno-compat": [
"packages/inferno-compat/src/index.ts"
],
"inferno-animation": [
"packages/inferno-animation/src/index.ts"
],
"inferno-create-element": [
"packages/inferno-create-element/src/index.ts"
],
"inferno-hydrate": [
"packages/inferno-hydrate/src/index.ts"
],
"inferno-extras": [
"packages/inferno-extras/src/index.ts"
],
"inferno-hyperscript": [
"packages/inferno-hyperscript/src/index.ts"
],
"inferno-mobx": [
"packages/inferno-mobx/src/index.ts"
],
"inferno-redux": [
"packages/inferno-redux/src/index.ts"
],
"inferno-router": [
"packages/inferno-router/src/index.ts"
],
"inferno-server": [
"packages/inferno-server/src/index.ts"
],
"inferno-shared": [
"packages/inferno-shared/src/index.ts"
],
"inferno-clone-vnode": [
"packages/inferno-clone-vnode/src/index.ts"
],
"inferno-test-utils": [
"packages/inferno-test-utils/src/index.ts"
],
"inferno-utils": [
"packages/inferno-utils/src/index.ts"
],
"inferno-vnode-flags": [
"packages/inferno-vnode-flags/src/index.ts"
],
"mobx": [
"node_modules/mobx/dist/mobx.esm.js"
]
},
"newLine": "LF",
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"target": "es2022",
"lib": ["DOM", "ES2022"],
"module": "esnext",
"allowJs": false,
"moduleResolution": "node",
"preserveConstEnums": true,
"outDir": "build",
"sourceMap": true,
"jsx": "preserve",
"noUnusedLocals": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"removeComments": false,
"experimentalDecorators": false,
"rootDir": "."
},
"include": [
"packages/*/src",
"packages/*/__tests__"
]
}