Merge pull request #6 from holidayapi/development-v2

feat: port to typescript
This commit is contained in:
Josh Sherman 2019-09-09 22:30:30 -05:00 committed by GitHub
parent b6ad36a075
commit 4886f14bc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 7096 additions and 111 deletions

15
tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true,
"removeComments": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": [
"src/**/*"
]
}