44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"removeComments": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strictFunctionTypes": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"allowUnusedLabels": false,
|
||
|
|
"allowUnreachableCode": false,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noPropertyAccessFromIndexSignature": false,
|
||
|
|
"noUncheckedSideEffectImports": false,
|
||
|
|
"types": ["node", "bun-types"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/*.spec.ts"
|
||
|
|
]
|
||
|
|
}
|