-
Notifications
You must be signed in to change notification settings - Fork 178
/
tsconfig-eslint.json
56 lines (56 loc) · 1.22 KB
/
tsconfig-eslint.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
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"paths": {
"/app/*": ["./app/src/*"]
},
"emitDeclarationOnly": false,
"noEmit": true
},
"include": [
"app/src",
"app/typings",
"app-shell/src",
"app-shell/typings",
"app-shell-odd/src",
"app-shell-odd/typings",
"components/src",
"components/typings",
"discovery-client/src",
"discovery-client/typings",
"labware-designer/src",
"labware-designer/typings",
"labware-library/src",
"labware-library/typings",
"opentrons-ai-client/src",
"shared-data/deck",
"shared-data/js",
"shared-data/protocol",
"shared-data/labware",
"shared-data/pipette",
"shared-data/liquid",
"shared-data/commandAnnotations",
"step-generation/src",
"step-generation/typings",
"protocol-designer/src",
"protocol-designer/typings",
"api-client/src",
"react-api-client/src",
"usb-bridge/node-client/src",
"**/*.js",
"**/*.ts",
"**/*.mts",
"*.js",
".*.js",
"**/*.json"
],
"exclude": [
"analyses-snapshot-testing/**",
"**/node_modules/**",
"**/coverage/**",
"**/dist/**/*",
"**/lib/**/*",
"**/build/**",
"**/venv/**"
]
}