23 lines
616 B
JSON
23 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmitOnError": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"types": []
|
|
},
|
|
"include": ["${configDir}/vitest.config.ts", "${configDir}/package.json", "${configDir}/src"]
|
|
}
|