BlueWallet/tsconfig.json

20 lines
567 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["es2020"],
"noEmit": true,
"strict": true,
"target": "esnext",
2021-07-18 15:51:40 +02:00
"skipLibCheck": true,
2024-05-05 16:33:06 -04:00
"resolveJsonModule": true,
"module": "esnext",
2024-06-05 21:31:34 -04:00
"paths": {
}
},
2024-06-05 21:31:34 -04:00
"extends": "@react-native/typescript-config/tsconfig.json",
2024-06-19 20:38:40 -04:00
"exclude": ["node_modules", "babel.config.js", "jest.config.js", "components/react-native-draggable-flatlist", "scripts/maccatalystpatches"],
2024-05-28 19:52:36 -04:00
}