Skip to content

Commit 162d975

Browse files
author
Kristjan Kosic - Chris
committed
fix: config files --> output to dist
1 parent b7f91fd commit 162d975

File tree

2 files changed

+6
-17
lines changed

2 files changed

+6
-17
lines changed

tsconfig.json

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
{
2-
"extends": "@sindresorhus/tsconfig",
2+
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"alwaysStrict": false,
5-
"esModuleInterop": true,
6-
"incremental": true,
7-
"lib": ["es2018"],
8-
"module": "commonjs",
9-
"moduleResolution": "node",
10-
"noUnusedLocals": true,
11-
"noUnusedParameters": false,
12-
"resolveJsonModule": true,
13-
"sourceMap": true,
14-
"strict": false,
15-
"target": "es2018",
16-
"typeRoots": ["node_modules/@types"]
4+
"outDir": "dist"
175
},
18-
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
6+
"include": [
7+
"src/**/**.ts"
8+
]
199
}

tslint-config.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"extends": "./tsconfig.json",
3-
"exclude": ["node_modules", "build", "dist"]
2+
"extends": "./tsconfig.json"
43
}

0 commit comments

Comments
 (0)