24 lines
334 B
JSON
24 lines
334 B
JSON
|
|
{
|
||
|
|
"extends": "../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"types": [
|
||
|
|
"vite/client"
|
||
|
|
],
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"./src/*"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src"
|
||
|
|
],
|
||
|
|
"references": [
|
||
|
|
{
|
||
|
|
"path": "./tsconfig.node.json"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|