mirror of
https://github.com/CompeyDev/create-guilded-bot.git
synced 2024-12-12 12:50:35 +00:00
20 lines
586 B
JSON
20 lines
586 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"]
|
|
}
|
|
}
|