@trapar-waves/cli-template
Version:
A CLI template with TypeScript, tsup, consola, destr, and picocolors, offering efficient builds, logging, data parsing, and colorful output, with ESLint for quality.
29 lines (28 loc) • 789 B
JSON
{
"compilerOptions": {
"lib": ["ES2017"],
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"declaration": true,
"outDir": "dist/src",
"sourceMap": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"],
"exclude": ["dist", "bundle", "node_modules"],
"ts-node": {
// these options are overrides used only by ts-node
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
}
}
}