initial commit

This commit is contained in:
Niels Kooiman
2019-08-12 12:52:12 +02:00
parent cc94057ac7
commit 352211dfcf
29 changed files with 2303 additions and 11 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "es5",
"declaration": true,
"sourceMap": true,
"outDir": "./dist",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
},
"files": [
"./src/index.ts"
]
}