DefinitelyTyped/types/strman/tsconfig.json
Adam Bergman 08c1f18272 Add types for strman (#40979)
* Initialize module

* Add types for all exported methods

* Add tests for all exported methods
2019-12-19 22:56:29 -08:00

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