tsconfig.json•685 B
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"paths": {
"@error": ["./src/error/index.ts"],
"@http": ["./src/http/index.ts"],
"@commands/*": ["./src/commands/*"]
}
},
"include": ["src/**/*", "tsup.config.ts", "vitest.config.ts", "eslint.config.js"],
"exclude": ["node_modules", "dist"]
}