We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9617328 commit 038f98bCopy full SHA for 038f98b
test/fixture/config.ts
@@ -1,14 +1,9 @@
1
-import { createDefineConfig } from "../../src";
2
-import type { SourceOptions } from "../../src";
3
-
4
-const defineConfig = createDefineConfig();
5
6
-export default defineConfig({
+export default {
7
theme: "./theme",
8
extends: [
9
["c12-npm-test"],
10
["gh:unjs/c12/test/fixture/_github#main", { giget: {} }],
11
- ] as [string, SourceOptions][] /* TODO: Auto type */,
+ ],
12
$test: {
13
extends: ["./config.dev"],
14
envConfig: true,
@@ -21,4 +16,4 @@ export default defineConfig({
21
16
// foo: "bar",
22
17
// x: "123",
23
18
array: ["a"],
24
-});
19
+};
0 commit comments