We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e997d9d commit c9ed02bCopy full SHA for c9ed02b
package.json
@@ -27,7 +27,7 @@
27
],
28
"scripts": {
29
"test": "yarn test:typecheck & yarn test:lint & yarn test:mocha",
30
- "test:mocha": "mkdir -p test/output && mocha --conditions=mocha",
+ "test:mocha": "mkdir -p test/output && mocha --conditions=mocha --files",
31
"test:lint": "eslint src test",
32
"test:typecheck": "yarn tsc --noEmit",
33
"prepublishOnly": "rm -rf dist && rollup -c && tsc",
tsconfig.json
@@ -7,7 +7,6 @@
7
"dom"
8
9
"strict": true,
10
- "stripInternal": true,
11
"outDir": "dist",
12
"allowJs": true,
13
"resolveJsonModule": true,
@@ -16,5 +15,6 @@
16
15
"@observablehq/plot": ["./src/index.js"]
17
}
18
},
+ "ts-node": { "files": true },
19
"include": ["src/**/*"]
20
0 commit comments