We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c8c10 commit adaef1fCopy full SHA for adaef1f
.github/workflows/ut.yml
@@ -15,6 +15,6 @@ jobs:
15
node-version: 14
16
- name: bootstrap and test
17
run: |
18
- yarn run bootstrap
+ yarn install
19
yarn run compile
20
yarn test
.yarnrc.yml
@@ -1,6 +1,2 @@
1
-plugins:
2
- - path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
3
- spec: "@yarnpkg/plugin-typescript"
4
-
5
yarnPath: .yarn/releases/yarn-berry.cjs
6
nodeLinker: node-modules
packages/next/tsconfig.json
@@ -0,0 +1,14 @@
+{
+ "extends": "../../tsconfig.base.json",
+ "compilerOptions": {
+ "rootDir": "./src",
+ "outDir": "./dist"
+ },
7
+ "references": [
8
+ { "path": "../rehype-estree" },
9
+ { "path": "../reorg-rehype" },
10
+ { "path": "../estree-jsx" },
11
+ { "path": "../loader" }
12
+ ],
13
+ "include": ["./src"]
14
+}
0 commit comments