Restyled by jq
This commit is contained in:
parent
b2dccae805
commit
8bbc538f6d
1 changed files with 66 additions and 34 deletions
100
tsconfig.json
100
tsconfig.json
|
@ -1,34 +1,66 @@
|
|||
{
|
||||
"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"]
|
||||
}
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue