mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 08:20:58 -05:00
19 lines
465 B
JSON
19 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"removeComments": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedParameters": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"baseUrl": ".",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"moduleResolution": "Bundler",
|
|
"typeRoots": [ "./src/interfaces.d.ts" ]
|
|
},
|
|
"include": [ "src" ],
|
|
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/*.json" ]
|
|
}
|