Add an initial definition for

This commit is contained in:
heycalmdown
2016-11-14 11:24:49 +09:00
parent 33ae2bd878
commit b8fb1fb2f1
3 changed files with 78 additions and 0 deletions

20
msgpack5/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"msgpack5-test.ts"
]
}