Skip to content

Commit e9b3a34

Browse files
authored
Merge pull request #14 from e-schultz/chore-fix-tsconfig
Don't exclude spec folder in tsconfig
2 parents 7d32793 + ded581c commit e9b3a34

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

tsconfig.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,26 @@
1111
"moduleResolution": "node",
1212
"declaration": true,
1313
"module": "commonjs",
14-
"lib": ["es5", "dom", "es2015"],
14+
"lib": [
15+
"es5",
16+
"dom",
17+
"es2015"
18+
],
1519
"types": [
1620
"jasmine",
1721
"node"
1822
],
1923
"baseUrl": ".",
2024
"rootDir": ".",
2125
"paths": {
22-
"@redux-observable-decorator": ["./"]
26+
"@redux-observable-decorator": [
27+
"./"
28+
]
2329
}
2430
},
2531
"exclude": [
2632
"node_modules",
2733
"release",
28-
"spec",
2934
"tests.bundle.ts"
3035
],
3136
"angularCompilerOptions": {

0 commit comments

Comments
 (0)