22 lines
480 B
JSON
22 lines
480 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"jsx": "preserve",
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"/@/*": ["src/*"]
|
|
}
|
|
}
|
|
}
|