feat(create-turbo): create basic

This commit is contained in:
Turbobot
2024-03-15 07:27:41 +11:00
committed by KMKoushik
commit c878b87e20
58 changed files with 6866 additions and 0 deletions

10
.eslintrc.js Normal file
View File

@@ -0,0 +1,10 @@
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: ["@repo/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
};