1
0
mirror of https://github.com/tooot-app/app synced 2025-01-14 18:36:09 +01:00
tooot/tsconfig.json
Zhiyuan Zheng dceaf8d25c
Use svg icons instead of expo ones
Possibility to control `strokeWidth`
2021-01-03 02:00:26 +01:00

24 lines
579 B
JSON

{
"compilerOptions": {
"target": "ES6",
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"baseUrl": "./",
"paths": {
// "@assets/*": ["./assets/*"],
"@api/*": ["./src/api/*"],
"@components/*": ["./src/components/*"],
"@screens/*": ["./src/screens/*"],
"@utils/*": ["./src/utils/*"],
"@root/*": ["./src/*"],
}
},
"exclude": ["node_modules"]
}