create-guilded-bot/common/tsconfig/default.json

21 lines
586 B
JSON
Raw Normal View History

2022-11-22 09:06:12 +00:00
{
"extends": "./base.json",
"compilerOptions": {
"lib": ["ESNext"],
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"importHelpers": true,
"rootDirs": ["src", "lib"]
}
}