16 lines
366 B
JSON
16 lines
366 B
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"tweetnacl": ["./node_modules/tweetnacl"],
|
|
"ws": ["./node_modules/@types/ws"],
|
|
"zod": ["./node_modules/zod"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx"]
|
|
}
|