This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": "@repo/typescript-config/nextjs.json", | |
"compilerOptions": { | |
"target": "es2015", | |
"plugins": [ | |
{ | |
"name": "next" | |
} | |
], | |
"outDir": "dist", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { getInputSizeStyles, Size } from './size' | |
import { HTMLInputTypeAttribute, useState } from 'react' | |
import { getVariantBorderStyles, getVariantInputTextStyles, getVariantOutlineStyles, Variant } from './variant' | |
import { getCommonInputStyles } from './tokens' | |
import { noop } from 'lodash' | |
interface InputProps { | |
variant?: Variant | |
size?: Size | |
placeholder?: string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is your Prisma schema file, | |
// learn more about it in the docs: https://pris.ly/d/prisma-schema | |
datasource db { | |
provider = "mysql" | |
url = env("DATABASE_URL") | |
referentialIntegrity = "prisma" | |
} | |
generator client { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "@repo/typescript-config/nextjs.json", | |
"compilerOptions": { | |
"target": "es2015", | |
"plugins": [ | |
{ | |
"name": "next" | |
} | |
], | |
"outDir": "dist", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "@repo/typescript-config/base.json", | |
"compilerOptions": { | |
"outDir": "dist", | |
"rootDir": "src", | |
"sourceMap": true, | |
"allowImportingTsExtensions": false, | |
"noEmit": false, | |
"moduleResolution": "NodeNext", | |
"module": "NodeNext", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
# Runtime data | |
pids | |
*.pid | |
*.seed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "module", | |
"name": "recipestacker-api", | |
"description": "This project was bootstrapped with Fastify-CLI.", | |
"version": "1.0.0", | |
"module": "dist/app.js", | |
"main": "app.ts", | |
"directories": { | |
"test": "test" | |
}, |