27 lines
714 B
JSON
27 lines
714 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"types": ["node", "vitest/globals"],
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"declaration": true,
|
||
|
|
"lib": ["ES2022"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "test/**/*"],
|
||
|
|
"exclude": ["node_modules", "eslint.config.mjs"]
|
||
|
|
}
|