2020-11-04 09:53:47 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-11-10 14:01:45 +00:00
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"target": "ES2018",
|
2020-11-04 09:53:47 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2020-11-10 14:01:45 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"outDir": "./dist"
|
2020-11-04 09:53:47 +00:00
|
|
|
},
|
|
|
|
"include": ["ts-lib/**/*"],
|
|
|
|
"exclude": ["node_modules", "test/**/*.ts"]
|
|
|
|
}
|