fasten-onprem/frontend/tsconfig.spec.json

21 lines
376 B
JSON
Raw Normal View History

2022-08-22 18:51:46 -06:00
{
"extends": "./tsconfig.json",
"compilerOptions": {
"skipLibCheck": true, //without this the "dom" and the "webworker" libs conflict
"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
}