mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 04:22:57 +00:00
33 lines
662 B
JSON
33 lines
662 B
JSON
{
|
|
"extends": "@tsconfig/react-native/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["es2017", "es2018", "es2019"],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"index.js",
|
|
"App.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
]
|
|
}
|