Skip to content

Commit 387828f

Browse files
committed
Fix import path
1 parent 0350021 commit 387828f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: npm ci --prefer-offline --cache=./.npm
3333

3434
- name: Build library
35-
run: npx tsc
35+
run: npx tsc --outDir .
3636

3737
- name: Set version in package.json
3838
run: npm --no-git-tag-version version ${{ github.event.release.tag_name }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Types and interfaces for writing valid JSON schema in TypeScript.",
44
"repository": "github:fosfad/json-schema-typescript-definitions",
55
"files": [
6-
"dist"
6+
"2020-12.d.ts"
77
],
88
"author": {
99
"email": "petr@flaks.dev",

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"noUnusedParameters": true,
1111
"module": "CommonJS",
1212
"moduleResolution": "Node",
13-
"sourceMap": true,
13+
"sourceMap": false,
1414
"declaration": true,
15-
"declarationMap": true,
15+
"declarationMap": false,
1616
"lib": ["ES2020"],
1717
"outDir": "dist"
1818
}

0 commit comments

Comments
 (0)