chore: first commit 🎉

This commit is contained in:
Joakim Carlstein 2023-11-08 11:41:05 +01:00
commit 9c5f9ebf23
28 changed files with 6264 additions and 0 deletions

34
turbo.json Normal file
View file

@ -0,0 +1,34 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["dist/**", "cjs/**"]
},
"build:watch": {
"dependsOn": ["^build"],
"inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["dist/**", "cjs/**"],
"cache": false
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["src/**/*", ".eslintrc"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**/*"],
"outputs": []
},
"test:watch": {
"dependsOn": ["^build"],
"cache": false
},
"checks": {
"dependsOn": ["build", "lint", "test"],
"outputs": []
}
}
}