39 lines
962 B
TypeScript
39 lines
962 B
TypeScript
import { dirname, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
import type { PresetAsset } from "presetter-types";
|
|
|
|
const DIR = dirname(fileURLToPath(import.meta.url));
|
|
|
|
// paths to the template directory
|
|
const TEMPLATES = resolve(DIR, "..", "templates");
|
|
export const DEFAULT_VARIABLE = {
|
|
source: "src",
|
|
};
|
|
|
|
/**
|
|
* get the list of templates provided by this preset
|
|
* @returns list of preset templates
|
|
*/
|
|
export default async function (): Promise<PresetAsset> {
|
|
return {
|
|
extends: ["presetter-preset-strict"],
|
|
template: {
|
|
".github/workflows/ci.yml": resolve(TEMPLATES, "ci.yml"),
|
|
".releaserc.json": resolve(TEMPLATES, ".releaserc.json"),
|
|
},
|
|
noSymlinks: [".github/workflows/ci.yml"],
|
|
variable: DEFAULT_VARIABLE,
|
|
supplementaryConfig: {
|
|
prettier: {
|
|
singleQuote: false,
|
|
},
|
|
tsconfig: {
|
|
compilerOptions: {
|
|
lib: ["ES2021"],
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|