forked from remirror/remirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.prod.json
59 lines (59 loc) · 1.24 KB
/
tsconfig.prod.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
{
"__AUTO_GENERATED__": "To update run: `yarn generate:json`",
"extends": "../../support/tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"baseUrl": "src",
"paths": {},
"composite": true,
"emitDeclarationOnly": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"rootDir": "src"
},
"exclude": [
"lib",
"**/*.test.{ts,tsx}",
"**/*.stories.{ts,tsx}",
"**/*.spec.{ts,tsx}",
"**/__mocks__/**",
"**/__tests__/**",
"**/__stories__/**"
],
"references": [
{
"path": "../core/tsconfig.prod.json"
},
{
"path": "../core-extensions/tsconfig.prod.json"
},
{
"path": "../extension-emoji/tsconfig.prod.json"
},
{
"path": "../extension-enhanced-link/tsconfig.prod.json"
},
{
"path": "../extension-mention/tsconfig.prod.json"
},
{
"path": "../react/tsconfig.prod.json"
},
{
"path": "../react-utils/tsconfig.prod.json"
},
{
"path": "../ui/tsconfig.prod.json"
},
{
"path": "../ui-buttons/tsconfig.prod.json"
},
{
"path": "../ui-icons/tsconfig.prod.json"
},
{
"path": "../../packages/multishift/tsconfig.prod.json"
}
]
}