DefinitelyTyped/types/string-placeholder/tsconfig.json
Filipe Ferreira c31e519f1b Added typing for string-placeholder (#40373)
* Added typing for string-placeholder

* Fixed linting

* Added readonly to arrays

* Change typescript version

* Fixed types definition

* Code review comments

* Removed clean as array type

* Fix export

* Fix export
2019-11-19 15:54:45 -08:00

25 lines
532 B
JSON

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