mirror of https://github.com/tooot-app/app
25 lines
615 B
JSON
25 lines
615 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react-native",
|
|
"lib": ["dom", "esnext"],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@api/*": ["./src/api/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@helpers/*": ["./src/helpers/*"],
|
|
"@screens/*": ["./src/screens/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@root/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|