42 lines
951 B
JSON
42 lines
951 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"incremental": true,
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "NodeNext",
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
/* Advanced Options */
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"files": true
|
|
},
|
|
"include": ["source", "types/**/*.d.ts"],
|
|
"exclude": ["**/node_modules", "**/dist", "vitest.config.ts"]
|
|
}
|