Initial commit

This commit is contained in:
js
2023-08-27 01:52:07 +00:00
commit 01c04cf3ce
9 changed files with 181 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"include": [
"src/**/*.ts"
],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./build",
"target": "ES2022",
"moduleResolution": "NodeNext",
"module": "CommonJS",
"declaration": true,
"sourceMap": true
}
}