net186-bot/tsconfig.json

19 lines
390 B
JSON
Raw Permalink Normal View History

2023-01-17 14:38:36 +00:00
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es2021",
"moduleResolution": "node",
"strict": true,
"sourceMap": true,
"lib": [
"es2021"
],
"skipLibCheck": true,
"rootDir": "src",
"outDir": "dist"
},
"typeRoots": [
"./src/types"
]
}