DefinitelyTyped/types/multicodec/tsconfig.json
Carson Farmer f4f29cb4f9 Adds existing npm lib multicodec + tests (#41404)
* feat: adds existing npm lib multicodec + tests

Signed-off-by: Carson Farmer <carson.farmer@gmail.com>

* chore: fix header typeo

Signed-off-by: Carson Farmer <carson.farmer@gmail.com>

* fix: multicodec is umd module that exposes global variable

Signed-off-by: Carson Farmer <carson.farmer@gmail.com>

* fix: uses globally exported namespace in tests

Signed-off-by: Carson Farmer <carson.farmer@gmail.com>
2020-01-13 17:37:12 -08:00

25 lines
524 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"esModuleInterop": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"multicodec-tests.ts"
]
}