POWR/tsconfig.json

19 lines
366 B
JSON
Raw Normal View History

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts",
"nativewind-env.d.ts"
2025-02-12 12:55:51 -05:00
, "jest.config.js", "jest.setup.js" ]
}