Skip to content

Commit e110e5b

Browse files
committed
Fix imports
1 parent 75d606d commit e110e5b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"description": "Types and interfaces for writing valid JSON schema in TypeScript.",
44
"repository": "github:fosfad/json-schema-typescript-definitions",
55
"files": [
6-
"2020-12.d.ts"
6+
"2020-12.d.ts",
7+
"2020-12.d.ts.map",
8+
"2020-12.js",
9+
"2020-12.js.map"
710
],
811
"author": {
912
"email": "petr@flaks.dev",
@@ -14,11 +17,6 @@
1417
"url": "https://github.com/fosfad/json-schema-typescript-definitions/issues"
1518
},
1619
"homepage": "https://github.com/fosfad/json-schema-typescript-definitions",
17-
"exports": {
18-
"./2020-12": {
19-
"import": "./dist/2020-12.d.ts"
20-
}
21-
},
2220
"devDependencies": {
2321
"@types/node": "15.12.4",
2422
"@typescript-eslint/eslint-plugin": "4.28.0",

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": false,
13+
"sourceMap": true,
1414
"declaration": true,
15-
"declarationMap": false,
15+
"declarationMap": true,
1616
"lib": ["ES2020"],
1717
"outDir": "dist"
1818
}

0 commit comments

Comments
 (0)