-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (53 loc) · 2.03 KB
/
tsconfig.json
File metadata and controls
53 lines (53 loc) · 2.03 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
// Use react-native's builtin lib when no longer dependent on @audius/web
"lib": [
"dom",
"es2019",
"es2020.bigint",
"es2020.date",
"es2020.number",
"es2020.promise",
"es2020.string",
"es2020.symbol.wellknown",
"es2021.promise",
"es2021.string",
"es2021.weakref",
"es2022.array",
"es2022.object",
"es2022.string",
"es2022.error"
],
"module": "esnext",
"paths": {
"@audius/harmony-native": ["./src/harmony-native/index.ts"],
"@audius/common/*": ["../common/src/*"],
"@audius/sdk": ["../sdk/src/index.ts"],
"~/*": ["../common/src/*"],
"app/*": ["./src/*"],
// Remove these when no longer dependent on @audius/web
"audio/*": ["../../node_modules/@audius/web/src/audio/*"],
"common/*": ["../../node_modules/@audius/web/src/common/*"],
"components/*": ["../../node_modules/@audius/web/src/components/*"],
"hooks/*": ["../../node_modules/@audius/web/src/hooks/*"],
"pages/*": ["../../node_modules/@audius/web/src/pages/*"],
"models/*": ["../../node_modules/@audius/web/src/models/*"],
"schemas": ["../../node_modules/@audius/web/src/common/schemas"],
"services/*": ["../../node_modules/@audius/web/src/services/*"],
"store/*": ["../../node_modules/@audius/web/src/store/*"],
"utils/*": ["../../node_modules/@audius/web/src/utils/*"],
"workers/*": ["../../node_modules/@audius/web/src/workers/*"],
// TODO remove these after updating bottom-sheet and rn-dynamic
"@types/react-native": ["./node_modules/react-native"],
"react-native": ["./node_modules/react-native"]
},
"strictNullChecks": true,
"types": ["vite/client", "jest", "node"],
// Update these when no longer dependent on @audius/web.
// Issue is due to absolute paths into @audius/web
"strict": false
},
"exclude": ["node_modules", "harmony", "examples"]
}