Hello world this

This commit is contained in:
Wouter van Veelen
2025-11-02 23:25:40 +01:00
parent 5805dee1b4
commit 9354f02819
28 changed files with 362 additions and 317 deletions

12
prettier.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { type Config } from 'prettier';
const config: Config = {
trailingComma: 'es5',
experimentalTernaries: true,
tabWidth: 4,
singleQuote: true,
jsxSingleQuote: true,
printWidth: 100,
};
export default config;