App/tsconfig.json

19 lines
393 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"baseUrl": ".",
"paths" : {
"@caj/*": ["src/caj/*"]
},
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"moduleResolution": "node",
"jsx": "react-native",
"strict": true,
},
"include": ["**/*.ts", "**/*.tsx", "./src/caj/img/*.png"],
"exclude": [
"node_modules"
]
}