mirror of https://github.com/tooot-app/app
48 lines
1001 B
JSON
48 lines
1001 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "React Native",
|
|
"_version": "2.0.3",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"types": [
|
|
"react-native"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"allowJs": false,
|
|
"jsx": "react-native",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"traceResolution": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@i18n/*": [
|
|
"./src/i18n/*"
|
|
],
|
|
"@screens/*": [
|
|
"./src/screens/*"
|
|
],
|
|
"@utils/*": [
|
|
"./src/utils/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js"
|
|
]
|
|
} |