This commit is contained in:
2023-07-11 10:25:49 +03:00
commit e81f6ac8b7
16 changed files with 454 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ES6",
"baseUrl": ".",
"rootDir": "src",
"outDir": "dist",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true
},
"exclude": ["rollup.config.ts"]
}