22 lines
633 B
JSON
22 lines
633 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Expo",
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-native",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "preserve",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"customConditions": ["react-native"],
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"target": "ESNext"
|
|
},
|
|
|
|
"exclude": ["${configDir}/node_modules", "${configDir}/babel.config.js", "${configDir}/metro.config.js", "${configDir}/jest.config.js", "${configDir}/android", "${configDir}/ios"]
|
|
}
|