mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
18 lines
372 B
Handlebars
18 lines
372 B
Handlebars
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"],
|
|
{{#unless (or (eq backend "convex") (eq backend "none"))}}
|
|
"references": [{
|
|
"path": "../server"
|
|
}]
|
|
{{/unless}}
|
|
}
|