tooot/tsconfig.json

48 lines
1001 B
JSON
Raw Normal View History

2020-10-31 21:04:46 +01:00
{
2023-02-11 19:15:34 +01:00
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Native",
"_version": "2.0.3",
2020-10-31 21:04:46 +01:00
"compilerOptions": {
2023-02-11 19:15:34 +01:00
"target": "esnext",
"module": "commonjs",
"types": [
"react-native"
],
"lib": [
2023-02-11 22:04:32 +01:00
"esnext"
2023-02-11 19:15:34 +01:00
],
"allowJs": false,
2020-10-31 21:04:46 +01:00
"jsx": "react-native",
"noEmit": true,
2023-02-11 19:15:34 +01:00
"isolatedModules": true,
2020-10-31 21:04:46 +01:00
"strict": true,
2023-02-11 22:04:32 +01:00
"strictFunctionTypes": false,
2023-02-11 19:15:34 +01:00
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
2023-02-11 22:04:32 +01:00
"traceResolution": true,
2023-02-11 19:15:34 +01:00
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"skipLibCheck": true,
2020-12-13 14:04:25 +01:00
"baseUrl": "./",
2020-10-31 21:04:46 +01:00
"paths": {
2023-02-11 19:15:34 +01:00
"@components/*": [
"./src/components/*"
],
"@i18n/*": [
"./src/i18n/*"
],
"@screens/*": [
"./src/screens/*"
],
"@utils/*": [
"./src/utils/*"
]
2020-10-31 21:04:46 +01:00
}
},
2023-02-11 19:15:34 +01:00
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js"
]
}