Initial version of bot
This commit is contained in:
42
tscofnig.json
Normal file
42
tscofnig.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"alwaysStrict": true,
|
||||
"baseUrl": "./",
|
||||
"checkJs": false,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"lib": [
|
||||
"ESNext"
|
||||
],
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"outDir": "dist",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"./src/*", "./dist/*"
|
||||
]
|
||||
},
|
||||
"rootDir": "src",
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"target": "ESNext",
|
||||
"types": [
|
||||
"node"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.js",
|
||||
"@types"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"<node_internals>/**"
|
||||
],
|
||||
"ts-node": {
|
||||
"esm": true,
|
||||
"swc": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user