Files
streamyfin/tsconfig.json

35 lines
616 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"paths": {
"@/*": ["./*"]
}
},
"include": [
"app/**/*",
"assets/**/*",
"components/**/*",
"constants/**/*",
"hooks/**/*",
"modules/**/*",
"packages/**/*",
"plugins/**/*",
"providers/**/*",
"scripts/**/*",
"translations/**/*",
"*.ts",
"*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"utils/jellyseerr/**/*"
]
}