DefinitelyTyped/types/theo/tsconfig.json
Pete 51a7427bab Add types for Theo (#28683)
* Add types for Theo package

* Remove strings and Theo interface

* Fix tests

* Remove string type from Transform union type

* 'OutputFormat' -> 'Format'
2018-10-09 12:09:03 -07:00

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