tooot/tsconfig.json

25 lines
615 B
JSON
Raw Normal View History

2020-10-31 21:04:46 +01:00
{
"compilerOptions": {
2020-11-05 00:47:31 +01:00
"target": "ES6",
2020-10-31 21:04:46 +01:00
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
2021-05-19 23:28:01 +02:00
"strictFunctionTypes": false,
2020-12-13 14:04:25 +01:00
"baseUrl": "./",
2020-10-31 21:04:46 +01:00
"paths": {
2020-12-13 14:04:25 +01:00
"@api/*": ["./src/api/*"],
"@components/*": ["./src/components/*"],
2021-05-12 15:40:55 +02:00
"@helpers/*": ["./src/helpers/*"],
2020-12-13 14:04:25 +01:00
"@screens/*": ["./src/screens/*"],
"@utils/*": ["./src/utils/*"],
2021-01-20 00:39:39 +01:00
"@root/*": ["./src/*"]
2020-10-31 21:04:46 +01:00
}
},
"exclude": ["node_modules"]
2020-10-31 21:04:46 +01:00
}