tsconfig.json 423 B

12345678910111213141516
  1. {
  2. "extends": "@react-native/typescript-config/tsconfig.json",
  3. "compilerOptions": {
  4. /* Visit https://aka.ms/tsconfig.json to read more about this file */
  5. /* Completeness */
  6. "noImplicitAny": false,
  7. "skipLibCheck": true, /* Skip type checking all .d.ts files. */
  8. "baseUrl": ".",
  9. "paths": {
  10. "@/*": ["./src/*"]
  11. },
  12. "types": ["node"]
  13. }
  14. }