66 lines
1.2 KiB
JSON
66 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "CommonJS",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"outDir": "./build",
|
|
"baseUrl": "./src",
|
|
"typeRoots": [
|
|
"/types/common",
|
|
"./node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@interface/*": [
|
|
"Interfaces/*"
|
|
],
|
|
"@root/*": [
|
|
"*"
|
|
],
|
|
"@config/*": [
|
|
"config/*"
|
|
],
|
|
"@events/*": [
|
|
"events/*"
|
|
],
|
|
"@logger": [
|
|
"logger"
|
|
],
|
|
"@database": [
|
|
"database"
|
|
],
|
|
"@schedules": [
|
|
"schedules"
|
|
],
|
|
"@handlers/*": [
|
|
"handlers/*"
|
|
],
|
|
"@helpers/*": [
|
|
"helpers/*"
|
|
],
|
|
"@locale": [
|
|
"locale"
|
|
],
|
|
"@plugins/*": [
|
|
"plugins/*"
|
|
],
|
|
"@schemas/*": [
|
|
"database/schemas/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"./test"
|
|
]
|
|
}
|