Skip to content

Commit 8b8b043

Browse files
committed
Tell TypeScript to not go through dist to load the package itself
To make local builds work
1 parent 5ad70c2 commit 8b8b043

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/test
33
/node_modules
44
.tern-*
5+
rollup.config.js
6+
tsconfig.json

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
"type": "git",
3737
"url": "https://github.com/codemirror/state.git"
3838
}
39-
}
39+
}

tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
"newLine": "lf",
1111
"declaration": true,
1212
"declarationMap": true,
13-
"moduleResolution": "node"
13+
"moduleResolution": "node",
14+
"paths": {
15+
"@codemirror/state": ["./src/index.ts"]
16+
}
1417
},
1518
"include": ["src/*.ts", "test/*.ts"]
1619
}

0 commit comments

Comments
 (0)