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