Skip to content

Commit 9877d73

Browse files
committed
fix: remove outDir (temporary fix for #27)
1 parent ba22003 commit 9877d73

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
// as the `tsconfig.json` file, which would look messy.
1010
// Setting it to `./dist/` isn't ideal either, because it would pollute the `dist` folder.
1111
// So we set it to a hidden folder in `node_modules` to avoid polluting the project root.
12-
"outDir": "./node_modules/.cache/vue-tsbuildinfo",
12+
// FIXME:
13+
// This caused a regression: https://github.com/vuejs/tsconfig/issues/27
14+
// Need to find a better solution.
15+
// "outDir": "./node_modules/.cache/vue-tsbuildinfo",
1316

1417
// As long as you are using a build tool, we recommend you to author and ship in ES modules.
1518
// Even if you are targeting Node.js, because

tsconfig.lib.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"compilerOptions": {
33
"noEmit": false,
44
"declaration": true,
5-
"emitDeclarationOnly": true,
6-
"outDir": "./dist/"
5+
"emitDeclarationOnly": true
76
}
87
}

0 commit comments

Comments
 (0)