first commit

This commit is contained in:
2021-09-07 13:49:06 +09:00
commit 10cb8fc765
27 changed files with 12975 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"module": "esnext",
"target": "es6",
"lib":["es6", "dom"],
"allowJs": true,
"moduleResolution": "node",
"experimentalDecorators": true
},
"files": ["./src/index.ts"]
}