Skip to content

Commit a4d89a2

Browse files
committed
[TSTEMPLATE-14] Remove tsconfig.spec.json
1 parent 4cd8591 commit a4d89a2

7 files changed

Lines changed: 9 additions & 15 deletions

File tree

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{
1414
"files": ["*.ts"],
1515
"parserOptions": {
16-
"project": ["./tsconfig.json", "./tsconfig.spec.json"]
16+
"project": ["./tsconfig.json"]
1717
}
1818
}
1919
],

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ typings/
6262

6363
# Build directory
6464
dist/
65-
dist-test/
6665

6766
# Environment Variables
6867
.env

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [v1.2.4]
44

55
### Fixes
6+
- [TSTEMPLATE-14] Remove tsconfig.spec.json
67
- [TSTEMPLATE-13] Switch tsconfig to output es6
78

89
## [v1.2.3]

jasmine.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"spec_dir": "./dist-test",
2+
"spec_dir": "./dist",
33
"spec_files": [ "**/*[sS]pec.js" ],
44
"helpers": [ "helpers/**/*.js" ],
55
"stopSpecOnExpectationFailure": false,

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
"scripts": {
66
"start": "npm run dev",
77
"dev": "npm run lint && ts-node src/index.ts",
8-
"test": "npm run build:dev && npm run build:spec && npm run coverage",
8+
"test": "npm run build:dev && npm run coverage",
99
"clean": "rm -rf dist dist-test",
1010
"build:dev": "npm run lint && npm run preprocess && npm run compile && npm run postprocess",
1111
"build:dev:clean": "npm run clean && npm run build:dev",
12-
"build:spec": "tsc --p tsconfig.spec.json",
1312
"build:prod": "npm run preprocess prod && npm run lint:prod && npm run compile && npm run postprocess prod",
1413
"build:prod:clean": "npm run clean && npm run build:prod",
1514
"compile": "./node_modules/.bin/tsc",

tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
"lib": ["es2017"]
1616
},
1717
"exclude": [
18-
"./test/",
1918
"./dist/"
19+
],
20+
"include": [
21+
"./example/",
22+
"./src/",
23+
"./test/"
2024
]
2125
}

tsconfig.spec.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)