forked from vendetta-mod/Vendetta
-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
34 lines (32 loc) · 953 Bytes
/
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
{
"exclude": [
"dist"
],
"compilerOptions": {
"strict": true,
"paths": {
// Just to discourage from consuming the module directly
"spitroast": ["./shims/emptyModule"],
"@core/*": ["./src/core/*"],
"@lib": ["./src/lib"],
"@lib/*": ["./src/lib/*"],
"@metro": ["./src/metro"],
"@metro/*": ["./src/metro/*"],
"@ui": ["./src/lib/ui"],
"@ui/*": ["./src/lib/ui/*"],
"@types": ["./src/lib/utils/types.ts"],
"@assets/*": ["./src/assets/*"]
},
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"jsx": "react-jsx",
"target": "esnext",
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
"stripInternal": true
}
}