Files
2026-07-13 13:05:33 +08:00

19 lines
548 B
JSON

{
"extends": "expo/tsconfig.base.json",
"compilerOptions": {
// Mobile stays on TypeScript 6 so Expo/Metro can still use the JS
// compiler API (require('typescript').sys) during release bundling.
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"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"]
}