Rewrite into TypeScript

This commit is contained in:
Wessel T
2019-08-01 16:49:14 +02:00
parent 9e7df46abb
commit 496cd5641c
29 changed files with 863 additions and 174 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"lib": [ "es2015", "es2016", "es2017", "esnext" ],
"watch": true,
"types": [ "node" ],
"outDir": "./dist",
"target": "esnext",
"module": "commonjs",
"strict": false,
"allowJs": true,
"rootDirs": [ "./lib", "./tests" ],
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true
},
"include": [ "lib/**/*", "tests/**/*" ],
"exclude": [ "node_modules" ]
}