mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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>
25 lines
524 B
JSON
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"
|
|
]
|
|
}
|