| 12345678910111213141516171819202122 |
- {
- "extends": "@react-native/typescript-config/tsconfig.json",
- "compilerOptions": {
- "jsx": "react-jsx",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "typeRoots": [
- "node_modules/@types",
- "global.d.ts"
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ],
- }
- },
- "exclude": [
- "node_modules",
- "dist"
- ],
- "compileOnSave": false
- }
|