1{ 2 "extends": "@tsconfig/node14/tsconfig.json", 3 "include": ["./src"], 4 "exclude": ["**/__mocks__/*", "**/__tests__/*"], 5 "compilerOptions": { 6 "outDir": "./build", 7 "moduleResolution": "node", 8 "typeRoots": [ 9 "ts-declarations", 10 "../../expo-module-scripts/ts-declarations", 11 "../../../node_modules/@types" 12 ], 13 "esModuleInterop": true, 14 "strictNullChecks": true, 15 "strictPropertyInitialization": true, 16 "strictFunctionTypes": true, 17 "skipLibCheck": true, 18 "noImplicitAny": true, 19 "noImplicitThis": true, 20 "noImplicitReturns": true, 21 "allowSyntheticDefaultImports": true 22 } 23} 24