mirror of
https://github.com/CompeyDev/create-guilded-bot.git
synced 2024-12-14 06:00:40 +00:00
21 lines
566 B
JSON
21 lines
566 B
JSON
|
{
|
||
|
"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"]
|
||
|
}
|
||
|
}
|