fasten-onprem/frontend/tsconfig.worker.json

19 lines
398 B
JSON

/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
//customizations
"skipLibCheck": true, //without this the "dom" and the "webworker" libs conflict
"outDir": "./out-tsc/worker",
"lib": [
"es2020",
"webworker",
],
"types": []
},
"include": [
"src/**/*.worker.ts"
],
}