-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
82 lines (82 loc) · 1.17 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
{
"extends": "@internal/tsconfig/base.json",
"compilerOptions": {
"outDir": "./dist/",
},
"include": ["./bin/*", "./commands/**/*", "./*"],
"exclude": ["./commands/__tests__/__fixtures__"],
"references": [
{
"path": "docs",
},
{
"path": "internal/eslint-plugin",
},
{
"path": "internal/jest-config",
},
{
"path": "internal/prettier-config",
},
{
"path": "internal/vitest-config",
},
{
"path": "modules/builders",
},
{
"path": "modules/eslint-formatter",
},
{
"path": "modules/file",
},
{
"path": "modules/git",
},
{
"path": "modules/github-action",
},
{
"path": "modules/graph",
},
{
"path": "modules/logger",
},
{
"path": "modules/onerepo",
},
{
"path": "modules/package-manager",
},
{
"path": "modules/subprocess",
},
{
"path": "modules/test-cli",
},
{
"path": "modules/yargs",
},
{
"path": "plugins/docgen",
},
{
"path": "plugins/eslint",
},
{
"path": "plugins/jest",
},
{
"path": "plugins/performance-writer",
},
{
"path": "plugins/prettier",
},
{
"path": "plugins/typescript",
},
{
"path": "plugins/vitest",
},
],
}