generated from blueplum/typescript-template
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { defineConfig } from "./dist/config";
|
|
|
|
export default defineConfig({
|
|
include: ["src/**.ts"],
|
|
outDir: "tests/generated",
|
|
templateHeader: ["console.log('hello, world!');"],
|
|
});
|