mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 13:56:15 +00:00
26 lines
679 B
JSON
Executable File
26 lines
679 B
JSON
Executable File
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"composite": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"$/*": ["./src/*"],
|
|
"$constants": ["./src/constants"],
|
|
"$utils/*": ["./src/utils/*"],
|
|
"$classes": ["./src/classes/index.ts"],
|
|
"$classes/*": ["./src/classes/*"],
|
|
"$commands": ["./src/commands/index.ts"],
|
|
"$commands/*": ["./src/commands/*"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["./**/*.ts", "./*.ts"]
|
|
}
|