1
0
mirror of https://github.com/tooot-app/app synced 2024-12-08 07:13:21 +01:00
tooot/tsconfig.json
2021-05-19 23:28:01 +02:00

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"]
}