-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 848 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "ts-default-import-repro",
"version": "0.0.0",
"private": true,
"description": "Repro for a small issue with TypeScript's esModuleInterop configuration",
"main": "index.js",
"scripts": {
"build": "run-s :foo-lib:build :foo-app:build",
":foo-app:build": "cd packages/foo-app && run-s build",
":foo-lib:build": "cd packages/foo-lib && run-s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walkerburgin/ts-default-import-repro.git"
},
"author": "Walker Burgin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/walkerburgin/ts-default-import-repro/issues"
},
"homepage": "https://github.com/walkerburgin/ts-default-import-repro#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}