builder-pattern
Version:
Create a builder pattern for Typescript using ES6 proxy.
20 lines (19 loc) • 420 B
JSON
{
"compilerOptions": {
"target": "ES2016",
"module": "CommonJS",
"moduleResolution": "Node",
"sourceMap": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"removeComments": false,
"strict": true,
"strictNullChecks": true,
"declaration": false,
"outDir": "dist/cjs"
},
"include": [
"src/**/*.ts",
"__tests__/**/*.ts"
]
}