- Create README for the main repository and example app - Implement example app with MapView and Marker components - Add package.json for example app with necessary scripts and dependencies - Create Map SDK package with TypeScript wrapper around react-native-maps - Define TypeScript configuration for the SDK
15 lines
300 B
JSON
15 lines
300 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "CommonJS",
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |