carpark-test/tsconfig.json
Martin Donnelly 4a3d75d2cc Fixed: Issue where no parameters would fail
Fixed: Issue with end date earlier than start date being allowed
Added: Jest tests
Updated: tests
2020-11-10 14:01:45 +00:00

19 lines
436 B
JSON

{
"compilerOptions": {
"strict": true,
"declaration": true,
"target": "ES2018",
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"esModuleInterop": true,
"outDir": "./dist"
},
"include": ["ts-lib/**/*"],
"exclude": ["node_modules", "test/**/*.ts"]
}