Prepare for publish

This commit is contained in:
Guilherme Werner 2023-12-31 15:14:19 -03:00
parent 337f41e723
commit 79fd0a089f
6 changed files with 1150 additions and 1517 deletions

View file

@ -1,15 +1,26 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "Node",
"esModuleInterop": true,
"strict": true,
"target": "ESNext",
"declaration": true,
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"moduleResolution": "Node",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"outDir": "build",
"lib": [
"ESNext",
"DOM"
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src/**/*",
"**/*.ts",
],
"exclude": [
"build",