2022-11-11 19:58:11 -05:00
|
|
|
{
|
2023-04-14 06:47:58 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"skipLibCheck": true,
|
2023-09-03 23:34:08 -04:00
|
|
|
"removeComments": true,
|
2023-10-05 07:56:29 -04:00
|
|
|
"noUnusedLocals": true,
|
2023-04-14 06:47:58 -04:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-10-05 07:56:29 -04:00
|
|
|
"noUnusedParameters": true,
|
2023-04-14 06:47:58 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "ES2022",
|
|
|
|
"module": "ESNext",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"rootDir": "src/",
|
|
|
|
"outDir": "dist/",
|
|
|
|
"moduleResolution": "bundler",
|
2023-09-01 00:32:11 -04:00
|
|
|
"typeRoots": [ "./src/typings" ]
|
2023-04-14 06:47:58 -04:00
|
|
|
},
|
2023-08-06 11:17:40 -04:00
|
|
|
"include": [ "src/" ],
|
2023-10-08 18:03:17 -04:00
|
|
|
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/errorBlocklist.json", "src/config.json", "src/DB-Beta.config.json" ]
|
2023-05-20 20:28:44 -04:00
|
|
|
}
|