relay/tsconfig.json

31 lines
762 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"rootDir": "./src",
"baseUrl": "./",
"outDir": "./dist",
"paths": {
"@server/*": ["./src/server/*"],
"@bot/*": ["./src/bot/*"]
},
"plugins": [
{"transform": "@zerollup/ts-transform-paths"}
],
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
"sourceMap": false,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true
},
"include": [
"./src/*",
"./src/server/**/*",
"./src/bot/**/*"
]
}