react-native-camera-kit/tsconfig.json

24 lines
648 B
JSON
Raw Normal View History

2020-11-17 23:42:36 +00:00
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es6"],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"resolveJsonModule": true, // Required for JSON files
"skipLibCheck": true, // Skips *.d.ts files
"strictFunctionTypes": false,
"noImplicitAny": false,
"outDir": "./lib",
2020-11-17 23:42:36 +00:00
"baseUrl": "app",
"paths": {
"*": ["*", "*.ios", "*.android"]
2020-11-17 23:42:36 +00:00
}
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js", "**/*.json", "**/*.spec.ts"]
2020-11-17 23:42:36 +00:00
}