Files
gh-christianlouis-docuelevate/mobile/tsconfig.json
T

20 lines
421 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext", "dom"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-native",
"paths": {
"@/*": ["./src/*"]
},
"baseUrl": "."
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}