easy-cli-framework
Version:
A framework for building CLI applications that are robust and easy to maintain. Supports theming, configuration files, interactive prompts, and more.
25 lines (22 loc) • 631 B
JSON
{
"include": ["src/**/*.ts", "examples/**/*.ts"],
"compilerOptions": {
"baseUrl": ".",
"module": "CommonJS",
"target": "es2019",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"strict": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["./node_modules/@types", "../../node_modules/@types"],
"paths": {
"easy-cli-framework": ["./src/index.ts"],
"easy-cli-framework/*": ["./src/*"]
}
},
"exclude": ["node_modules", "*.json", "dist"]
}