mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-17 19:30:27 +01:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
// TS 6.0: "types" now defaults to [] (no auto-inclusion of node_modules/@types)
|
|
"types": ["node", "jest"],
|
|
"incremental": true,
|
|
"tsBuildInfoFile": ".tsbuildinfo",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"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/**/*"
|
|
]
|
|
}
|