DefinitelyTyped/types/utm/tsconfig.json
Hyeonsoo David Lee 62b83bada6 [utm] Add new definitions for utm (#34216)
* [utm] Add new definitions for utm

* add 'strictFunctionTypes' in tsconfig.json

* What the...
2019-03-29 20:17:55 -07:00

24 lines
484 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",
"utm-tests.ts"
]
}