2022-08-22 18:51:46 -06:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2022-10-12 19:47:12 -06:00
|
|
|
"skipLibCheck": true, //without this the "dom" and the "webworker" libs conflict
|
|
|
|
|
2022-10-05 23:01:23 -06:00
|
|
|
"resolveJsonModule": true,
|
2022-08-22 18:51:46 -06:00
|
|
|
"outDir": "./out-tsc/spec",
|
|
|
|
"types": [
|
|
|
|
"jasmine",
|
2023-01-15 12:37:26 -07:00
|
|
|
],
|
2022-08-22 18:51:46 -06:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"src/test.ts",
|
|
|
|
"src/polyfills.ts"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src/**/*.spec.ts",
|
|
|
|
"src/**/*.d.ts"
|
2023-01-15 12:37:26 -07:00
|
|
|
],
|
2022-08-22 18:51:46 -06:00
|
|
|
}
|