DefinitelyTyped/types/globalyzer/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 8d4dd52d26
feat(globalyzer): new type definition (#43827)
- type definition
- tests

https://github.com/terkelg/globalyzer#api

Thanks!
2020-04-13 16:21:57 -07:00

24 lines
491 B
JSON

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