add github typing

This commit is contained in:
vvakame
2016-10-29 12:04:29 +09:00
parent f86eb44d1b
commit 762a860dfa
3 changed files with 372 additions and 0 deletions

19
github/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"github-tests.ts"
]
}