Skip to content

Commit 88e35ce

Browse files
authored
Merge pull request #98 from total-typescript/ci-check/added-tsconfig
Moved to @total-typescript/tsconfig
2 parents b0c5daa + efe5237 commit 88e35ce

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

.github/workflows/renovate-checks.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- "renovate/**"
6+
- "ci-check/**"
67

78
jobs:
89
build:

package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"license": "GPL-3.0",
88
"devDependencies": {
99
"@total-typescript/exercise-cli": "^0.6.0",
10+
"@total-typescript/tsconfig": "^1.0.3",
1011
"@types/node": "^18.6.5",
1112
"cross-fetch": "^3.1.5",
1213
"jsdom": "^21.1.1",

tsconfig.json

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
{
2+
"extends": "@total-typescript/tsconfig/bundler",
23
"compilerOptions": {
3-
"types": [
4-
"vitest/importMeta"
5-
],
6-
"target": "es2020",
7-
"module": "ES2022",
8-
"moduleResolution": "Bundler",
9-
"noEmit": true,
10-
"isolatedModules": true,
11-
"esModuleInterop": true,
12-
"forceConsistentCasingInFileNames": true,
13-
"strict": true,
14-
"skipLibCheck": true
4+
"noUncheckedIndexedAccess": false,
5+
"verbatimModuleSyntax": false
156
},
167
"include": [
178
"src"

0 commit comments

Comments
 (0)