forked from connorgallopo/Tracearr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.eslint.json
More file actions
41 lines (41 loc) · 1.04 KB
/
tsconfig.eslint.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"jsx": "react-jsx",
"types": ["node"],
"baseUrl": ".",
"paths": {
"@tracearr/shared": ["./packages/shared/src"],
"@tracearr/shared/*": ["./packages/shared/src/*"],
"@tracearr/translations": ["./packages/translations/src"],
"@tracearr/translations/*": ["./packages/translations/src/*"],
"@/*": ["./apps/web/src/*", "./apps/mobile/src/*"]
}
},
"include": [
"apps/server/src/**/*.ts",
"apps/web/src/**/*.ts",
"apps/web/src/**/*.tsx",
"apps/mobile/**/*.ts",
"apps/mobile/**/*.tsx",
"packages/shared/src/**/*.ts",
"packages/translations/src/**/*.ts",
"packages/test-utils/src/**/*.ts",
"*.config.ts",
"*.config.js",
"*.config.mjs"
],
"exclude": [
"node_modules",
"**/node_modules",
"**/dist",
"**/build",
"**/.turbo",
"**/coverage",
"**/.expo"
]
}