DefinitelyTyped/types/simple-icons/tsconfig.json
Eric Cornelissen 24f2f2e8cb
Add types for simple-icons (#42541)
* Create types for [simple-icons]

* Add missing final newline

* Update CODEOWNERS

* Revert a53398139f1a05eba5acbc2c085ad8b5fce705f4

* Use `export =` instead of `export default`

as suggested by @PranavSenthilnathan

* fix lint errors
2020-02-25 17:03:31 -08:00

25 lines
526 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",
"simple-icons-tests.ts"
]
}