This repository has been archived on 2025-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
xyter/tsconfig.json
2022-04-17 17:28:16 +00:00

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"
]
}