Compare commits

..

No commits in common. "32edc3c68fe7f1e947248ebb40340bc70a18af52" and "a8956223c2c70b810b4ec9dea09900b30b963a24" 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"
]
} }