clef-parse
Version:
Simple, lightweight argv parser. Powers the cleffa and clefairy packages
29 lines (25 loc) • 660 B
JSON
{
"include": ["./src/**/*.ts"],
"exclude": ["./**/*.test.ts"],
"compilerOptions": {
"lib": ["es2019", "dom"],
"target": "es2018",
"module": "CommonJS",
"outDir": "./dist",
"declaration": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"moduleResolution": "node",
"esModuleInterop": true
}
}