We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa3534 commit 128b67dCopy full SHA for 128b67d
packages/engine/package.json
@@ -2,11 +2,12 @@
2
"name": "@total-typescript/error-translation-engine",
3
"version": "1.0.3",
4
"license": "MIT",
5
- "main": "./src/index.ts",
6
- "types": "./src/index.ts",
+ "main": "./out/index.js",
+ "types": "./out/index.d.ts",
7
"private": true,
8
"scripts": {
9
- "test": "vitest run"
+ "test": "vitest run",
10
+ "build": "tsc"
11
},
12
"dependencies": {
13
"front-matter": "^4.0.2"
packages/engine/tsconfig.json
@@ -1,9 +1,13 @@
1
{
"extends": "tsconfig/base.json",
+ "compilerOptions": {
+ "outDir": "out"
+ },
"include": [
"src"
],
"exclude": [
- "node_modules"
+ "node_modules",
+ "src/__tests__"
]
}
0 commit comments