tsconfig.json•934 B
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["esnext"],
"target": "ESNext",
"module": "esnext",
"moduleDetection": "force",
"allowJs": true,
// Node.js CLI mode
"moduleResolution": "node",
// Interop for CommonJS modules
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// Output compiled JS
"noEmit": false,
"outDir": "dist",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
,
"include": [
"*.ts",
"commands/**/*.ts",
"lib/**/*.ts",
"logic/**/*.ts"
]
}