31 lines
513 B
JSON
31 lines
513 B
JSON
{
|
|||
|
|
"extends": "@agent-native/core/tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"ignoreDeprecations": "6.0",
|
||
|
|
"rootDirs": [
|
||
|
|
".",
|
||
|
|
"./.react-router/types"
|
||
|
|
],
|
||
|
|
"paths": {
|
||
|
|
"*": [
|
||
|
|
"./*"
|
||
|
|
],
|
||
|
|
"@/*": [
|
||
|
|
"./app/*"
|
||
|
|
],
|
||
|
|
"@shared/*": [
|
||
|
|
"./shared/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"app/**/*",
|
||
|
|
"server/**/*",
|
||
|
|
"shared/**/*",
|
||
|
|
"vite.config.ts",
|
||
|
|
"react-router.config.ts",
|
||
|
|
".react-router/types/**/*",
|
||
|
|
".generated/**/*"
|
||
|
|
]
|
||
|
|
}
|