Spaces:
Building
Building
Create tsconfig.spec.json
Browse files- flare-ui/tsconfig.spec.json +13 -0
flare-ui/tsconfig.spec.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"extends": "./tsconfig.json",
|
3 |
+
"compilerOptions": {
|
4 |
+
"outDir": "./out-tsc/spec",
|
5 |
+
"types": [
|
6 |
+
"jasmine"
|
7 |
+
]
|
8 |
+
},
|
9 |
+
"include": [
|
10 |
+
"src/**/*.spec.ts",
|
11 |
+
"src/**/*.d.ts"
|
12 |
+
]
|
13 |
+
}
|