carpark-test/tsconfig.json

19 lines
436 B
JSON
Raw Permalink Normal View History

{
"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"]
}