18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2023"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"strict": true,
|
||
|
|
"composite": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"declaration": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": ["vite.config.ts"]
|
||
|
|
}
|