We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c68885 commit 6601225Copy full SHA for 6601225
package.json
@@ -2,7 +2,20 @@
2
"name": "@solvedac-community/api",
3
"version": "3.2021.09+b2",
4
"description": "자동 생성되는 TypeScript solved.ac API 클라이언트",
5
- "main": "index.js",
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "exports": {
8
+ "./apis": "./dist/apis/index.js",
9
+ "./models": "./dist/apis/models.js",
10
+ "./*": "./dist/*.js"
11
+ },
12
+ "typesVersions": {
13
+ "*": {
14
+ "*": [
15
+ "./dist/*"
16
+ ]
17
+ }
18
19
"scripts": {
20
"generate": "openapi-generator-cli batch --clean typescript-fetch.yaml",
21
"build": "rimraf dist && tsc"
0 commit comments