/
mustreets
/
TestApp
Обзор
Документация
Войти
/
mustreets
/
TestApp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
master
tsconfig.json
65 строк
2 KB
Slava
Remove Crashlytics integration from the beta lane in Fastfile
07 июн 2026, 20:06
07 июн 2026, 20:06
f21773c
Код
Авторство
О чём код?
{ "extends": "./tsconfig.paths.json", "compilerOptions": { "target": "esnext", "module": "esnext", "types": ["jest"], "lib": [ "es2019", "es2020.bigint", "es2020.date", "es2020.number", "es2020.promise", "es2020.string", "es2020.symbol.wellknown", "es2021.promise", "es2021.string", "es2021.weakref", "es2022.array", "es2022.object", "es2022.string" ], "allowJs": true, "jsx": "react-native", "noEmit": true, "isolatedModules": true, "moduleResolution": "bundler", "customConditions": ["react-native"], "allowImportingTsExtensions": true, "allowArbitraryExtensions": true, "resolveJsonModule": true, "resolvePackageJsonImports": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": false, /* --- МАКСИМАЛЬНАЯ СТРОГОСТЬ --- */ "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "noImplicitThis": true, "alwaysStrict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, /* --- ДЕКОРАТОРЫ --- */ "experimentalDecorators": true, "emitDecoratorMetadata": true }, "exclude": [ "node_modules", "aliases.js", "babel.config.js", "metro.config.js", "jest.config.js", "scripts/sync-tsconfig-paths.js", "build", "dist", "**/Pods/**" ] }