4a3d75d2cc
Fixed: Issue with end date earlier than start date being allowed Added: Jest tests Updated: tests
19 lines
436 B
JSON
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"]
|
|
}
|