DefinitelyTyped/types/to-title-case/tsconfig.json
Richie Bendall a0201c397a feat: Add typings for to-title-case (#41547)
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-01-15 17:13:40 -05: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",
"to-title-case-tests.ts"
]
}