DefinitelyTyped/types/camelcase-css/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 9bbc9d896c
feat(camelcase-css): new definition (#46980)
One line CSS utility method:
- definition type
- test

https://www.npmjs.com/package/camelcase-css

Thanks!
2020-08-26 22:12:16 -04:00

24 lines
494 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",
"camelcase-css-tests.ts"
]
}