-
Notifications
You must be signed in to change notification settings - Fork 13
/
tsconfig.json
26 lines (26 loc) · 1.07 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
// tsconfig for development. this references all of source and test files
{
"exclude": ["examples"],
"files": [],
"references": [
{ "path": "./packages/typeless" },
{ "path": "./packages/typeless/__tests__/unit" },
{ "path": "./packages/typeless/__tests__/type" },
{ "path": "./packages/typeless/__tests__/type/tsconfig.notStrict.json" },
{ "path": "./packages/typeless/tsconfig.cjs.json" },
{ "path": "./packages/typeless-form" },
{ "path": "./packages/typeless-form/tsconfig.cjs.json" },
{ "path": "./packages/typeless-form/__tests__/unit" },
{ "path": "./packages/typeless-form/__tests__/type" },
{
"path": "./packages/typeless-form/__tests__/type/tsconfig.notStrict.json"
},
{ "path": "./packages/typeless-router" },
{ "path": "./packages/typeless-router/tsconfig.cjs.json" },
{ "path": "./packages/typeless-router/__tests__/unit" },
{ "path": "./packages/typeless-router/__tests__/type" },
{
"path": "./packages/typeless-router/__tests__/type/tsconfig.notStrict.json"
}
]
}