Typescript declaration file for WebAssembly JS API

This commit is contained in:
Wink Saville
2017-04-04 15:43:11 -07:00
parent 742cb488d6
commit 61d3b0203b
5 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"webassembly-js-api-tests.ts"
]
}