Compare commits

..

No commits in common. "1fe00c5b0e76d270bcf62dd716f393ab54712108" and "ee35da7342de601650052eae13bc773831ea9ad7" have entirely different histories.

View File

@ -1,20 +1,12 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2020", "target": "es2017",
"module": "commonjs", "module": "commonjs",
"rootDir": "./src", "rootDir": "./src",
"outDir": "./build", "outDir": "./build",
"esModuleInterop": true, "esModuleInterop": true,
"strict": false, "strict": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true
"sourceMap": false }
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
} }