Finishing touches and version bump... let the development continue!
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-26 12:10:06 -04:00
parent 62c50964fa
commit 9dc3520989
4 changed files with 22 additions and 7 deletions

17
tsconfig.package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"outDir": "dist/",
"rootDirs": ["./", "src/"],
"strict": true,
"esModuleInterop": true,
"sourceMap": false,
"removeComments": true
},
"include": ["./src"]
}