mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 04:10:59 -05:00
23 lines
634 B
JSON
23 lines
634 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"removeComments": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedParameters": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"baseUrl": "./",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"moduleResolution": "bundler",
|
|
"typeRoots": [ "./src/interfaces.d.ts" ]
|
|
},
|
|
"include": [ "src" ],
|
|
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/*.json", "postgres-replica-stuff" ]
|
|
}
|