Tinasha-Bot/jsconfig.json

17 lines
428 B
JSON
Raw Normal View History

2023-08-20 14:29:07 +09:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"baseUrl": "./",
"paths": {
"@root/*": ["./*"],
2024-03-17 13:58:37 +09:00
"@handlers/*": ["./src/handlers/*"],
"@helpers/*": ["./src/helpers/*"],
"@schemas/*": ["./src/database/schemas/*"],
2023-08-20 14:29:07 +09:00
"@src/*": ["./src/*"],
2024-03-17 13:58:37 +09:00
"@structures/*": ["./src/structures/*"]
2023-08-20 14:29:07 +09:00
}
},
"include": ["src"],
2023-08-20 14:29:07 +09:00
"exclude": ["node_modules", "**/node_modules/*"]
2024-04-15 10:11:17 +07:00
}