tooot/tsconfig.json

19 lines
377 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,
"baseUrl": ".",
"paths": {
"src/*": ["src/*"]
}
},
"exclude": ["node_modules"]
2020-10-31 21:04:46 +01:00
}