@fougassum/tocase
Version:
Convert a string to any common case (camel, pascal, snake, kebab, capital, space, dot) with upper/lowercase variants.
19 lines • 388 B
JSON
{
"compilerOptions": {
"module": "ESNext",
"noImplicitAny": false,
"removeComments": true,
"moduleResolution": "node",
"preserveConstEnums": true,
"sourceMap": false,
"outDir": "./lib",
"baseUrl": ".",
"esModuleInterop": true,
"target": "ES2021",
"lib": ["ES2021"],
"resolveJsonModule": true
},
"files": [
"./src/index.ts",
],
}