decoval
Version:
DecoVal is a decorator-driven validation pattern that allows you to add validation rules directly to the properties of TypeScript classes, simplifying data control and increasing code readability and reusability.
19 lines (17 loc) • 465 B
JSON
{
"compilerOptions": {
"emitDeclarationOnly": false,
"declaration": true,
"target": "es6",
"experimentalDecorators": true,
"lib": ["ES6", "ESNext", "DOM", "DOM.Iterable", "ScriptHost"],
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"moduleResolution": "node",
"outDir": "lib",
"skipLibCheck": true,
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.test.*"]
}