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