mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
- Re-setup karma / jasmine tests -- Fix tsconfig paths -- Remove no longer needed view and field test imports -- Add test app-shell specific test command -- Add karma/jasmine specific webpack configuration
18 lines
276 B
JSON
18 lines
276 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../../out-tsc/spec",
|
|
"types": [
|
|
"jasmine",
|
|
"node"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/test.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"**/*.spec.ts",
|
|
"**/*.d.ts"
|
|
]
|
|
}
|