19 lines
397 B
JSON
19 lines
397 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"noEmit": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["../src/*"],
|
||
|
|
"@site/*": ["./src/*"]
|
||
|
|
},
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"types": ["vite/client", "node"]
|
||
|
|
},
|
||
|
|
"include": ["src", "../src"]
|
||
|
|
}
|