Skip to content

Commit fae23d9

Browse files
author
Kewin Polok
committed
Fix rootDir
1 parent 3409fd6 commit fae23d9

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"husky": "^4.2.5",
3939
"nock": "^13.0.4",
4040
"prettier": "^2.0.5",
41+
"rimraf": "^3.0.2",
4142
"tsdx": "^0.13.2",
4243
"tslib": "^2.0.1",
4344
"typescript": "^3.9.7",

tsconfig.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"include": ["src", "types"],
3-
"exclude": ["src/testHelpers"],
3+
"exclude": ["src/testHelpers", "src/**/*.spec.ts"],
44
"compilerOptions": {
55
"module": "esnext",
66
"lib": ["dom", "esnext"],
@@ -9,18 +9,16 @@
99
"sourceMap": true,
1010
"rootDir": "./src",
1111
"strict": true,
12-
"noUnusedLocals": true,
13-
"noUnusedParameters": true,
1412
"noImplicitReturns": true,
1513
"noFallthroughCasesInSwitch": true,
14+
"noUnusedLocals": true,
15+
"noUnusedParameters": true,
1616
"moduleResolution": "node",
17-
"baseUrl": "./",
18-
"paths": {
19-
"*": ["src/*", "node_modules/*"]
20-
},
2117
"jsx": "react",
2218
"esModuleInterop": true,
23-
"resolveJsonModule": true,
24-
"strictPropertyInitialization": false
19+
"skipLibCheck": true,
20+
"forceConsistentCasingInFileNames": true,
21+
"strictPropertyInitialization": false,
22+
"noEmit": true
2523
}
2624
}

yarn.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5154,6 +5154,13 @@ rimraf@^2.5.4, rimraf@^2.6.3:
51545154
dependencies:
51555155
glob "^7.1.3"
51565156

5157+
rimraf@^3.0.2:
5158+
version "3.0.2"
5159+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
5160+
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
5161+
dependencies:
5162+
glob "^7.1.3"
5163+
51575164
rollup-plugin-babel@^4.3.2:
51585165
version "4.4.0"
51595166
resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb"

0 commit comments

Comments
 (0)