forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 1.24 KB
/
Copy pathtsconfig.base.json
File metadata and controls
30 lines (30 loc) · 1.24 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "expo/tsconfig.base",
"compilerOptions": {
"isolatedModules": true,
"strict": true,
// Every project under the root solution is type-check only. `expo/tsconfig.base` happens to
// set this too, but it is restated here because `tsc --build` rejects `--noEmit` as a command
// line flag: the whole typecheck gate now depends on this option coming from a config file.
"noEmit": true,
"incremental": true,
"paths": {
"@assets/*": ["./assets/*"],
"@components/*": ["./src/components/*"],
"@github/*": ["./.github/*"],
"@hooks/*": ["./src/hooks/*"],
"@libs/*": ["./src/libs/*"],
"@navigation/*": ["./src/libs/Navigation/*"],
"@pages/*": ["./src/pages/*"],
"@prompts/*": ["./prompts/*"],
"@scripts/*": ["./scripts/*", "./.github/scripts/*"],
"@server/*": ["./server/*"],
"@styles/*": ["./src/styles/*"],
"@src/*": ["./src/*"],
"@userActions/*": ["./src/libs/actions/*"],
"@selectors/*": ["./src/selectors/*"],
"tests/*": ["./tests/*"]
}
}
}