UNPKG

skeet

Version:

Full-stack TypeScript Serverless Framework

16 lines (15 loc) 227 B
export const prettierignore = async (appName: string) => { const filePath = `${appName}/.prettierignore` const body = ` .next out dist build src/__generated__ src/schema.graphql ` return { filePath, body, } }