diff --git a/tsconfig.json b/tsconfig.json index ea67970..be90ca2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,20 @@ { + "compilerOptions": { + "types": ["vitest"], + "emitDeclarationOnly": true, + "declaration": true, + "outDir": "dist" + }, "files": [], "references": [ + { + "path": "./tsconfig.app.json" + }, { "path": "./tsconfig.node.json" }, { - "path": "./tsconfig.app.json" + "path": "./tsconfig.types.json" } - ], - "compilerOptions": { - "types": ["vitest"] - } + ] }