tsconfig.json 403 B

12345678910111213141516171819202122
  1. {
  2. "extends": "@react-native/typescript-config/tsconfig.json",
  3. "compilerOptions": {
  4. "jsx": "react-jsx",
  5. "experimentalDecorators": true,
  6. "emitDecoratorMetadata": true,
  7. "typeRoots": [
  8. "node_modules/@types",
  9. "global.d.ts"
  10. ],
  11. "paths": {
  12. "@/*": [
  13. "./src/*"
  14. ],
  15. }
  16. },
  17. "exclude": [
  18. "node_modules",
  19. "dist"
  20. ],
  21. "compileOnSave": false
  22. }