2021-07-18 14:56:59 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["es2020"],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
2021-07-18 15:51:40 +02:00
|
|
|
"skipLibCheck": true,
|
2024-05-05 22:33:06 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"module": "esnext",
|
2021-07-18 14:56:59 +02:00
|
|
|
},
|
2023-03-04 18:51:11 +01:00
|
|
|
"extends": "@tsconfig/react-native/tsconfig.json",
|
2023-04-24 19:54:52 +02:00
|
|
|
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js", "components/react-native-draggable-flatlist", "scripts/maccatalystpatches"],
|
2021-07-18 14:56:59 +02:00
|
|
|
}
|