DefinitelyTyped/types/math-random/tsconfig.json
Richie Bendall d05a9de5c6
feat: Add typings for math-random (#42082)
* feat: Add typings for math-random

Signed-off-by: Richie Bendall <richiebendall@gmail.com>

* fix: `cryptographic` should be true | undefined

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-02-05 10:51:24 -08:00

24 lines
492 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",
"math-random-tests.ts"
]
}