Initial commit

This commit is contained in:
2023-07-20 17:00:34 +09:00
commit 3397d7096d
13 changed files with 2383 additions and 0 deletions

9
.prettierrc.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import("prettier").Options} */
const config = {
trailingComma: 'es5',
tabWidth: 2,
semi: true,
singleQuote: true,
};
export default config;