DefinitelyTyped/types/shuffle-seed/tsconfig.json
Leonardo Donelli 53af59d83f Add shuffle-seed typings (#29798)
* Add shuffle-seed typings

* Add strictFunctionTypes tsconfig param, fix linter errors

* Improve shuffle-seed type definition, use generics
2018-10-17 11:57:09 -07:00

24 lines
486 B
JSON

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