Skip to content

Commit 7a05045

Browse files
committed
chore: fix build configuration
1 parent 0662d17 commit 7a05045

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

playground/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"api": "ts-node-dev --respawn --transpileOnly ./api"
99
},
1010
"dependencies": {
11+
"@types/koa-bodyparser": "^4.3.0",
1112
"tailwindcss": "^1.4.6",
1213
"vue": "^3.0.0-beta.15"
1314
},

playground/tsconfig.json

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"extends": "..",
3+
"exclude": [],
34
"compilerOptions": {
5+
"lib": ["ES2020", "DOM"],
46
"noImplicitAny": false
57
}
68
}

playground/yarn.lock

+7
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,13 @@
207207
resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz#513abfd256d7ad0bf1ee1873606317b33b1b2a72"
208208
integrity sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==
209209

210+
"@types/koa-bodyparser@^4.3.0":
211+
version "4.3.0"
212+
resolved "https://registry.yarnpkg.com/@types/koa-bodyparser/-/koa-bodyparser-4.3.0.tgz#54ecd662c45f3a4fa9de849528de5fc8ab269ba5"
213+
integrity sha512-aB/vwwq4G9FAtKzqZ2p8UHTscXxZvICFKVjuckqxCtkX1Ro7F5KHkTCUqTRZFBgDoEkmeca+bFLI1bIsdPPZTA==
214+
dependencies:
215+
"@types/koa" "*"
216+
210217
"@types/koa-compose@*":
211218
version "3.2.5"
212219
resolved "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz#85eb2e80ac50be95f37ccf8c407c09bbe3468e9d"

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
"lib": ["ES2018", "DOM"],
2020
"types": ["jest", "jscodeshift", "node"],
2121
"rootDir": "."
22-
}
22+
},
23+
"exclude": ["dist", "playground"]
2324
}

0 commit comments

Comments
 (0)