chore: remove noEmitError from tsconfig file

This commit is contained in:
Alexandre Nunes 2020-09-27 02:25:56 -03:00
parent 1b78ee7ca1
commit 688940bdd1
1 changed files with 5 additions and 13 deletions

View File

@ -2,23 +2,15 @@
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noEmitOnError": true,
"declaration": true,
"outDir": "lib",
"strict": true,
"rootDir": "src",
"baseUrl": "src",
"outDir": "lib",
"paths": {
"@/*": [
"*"
]
"@/*": ["*"]
}
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
}
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
}