Initial commit
Some checks failed
Lint / lint (push) Failing after 12s
Publish / publish (push) Failing after 11s

This commit is contained in:
Julien Valverdé
2026-03-25 00:44:50 +01:00
commit c77057a2c9
68 changed files with 5627 additions and 0 deletions

30
turbo.json Normal file
View File

@@ -0,0 +1,30 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint:tsc": {
"cache": false
},
"lint:biome": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": ["./src/**"],
"outputs": ["./dist/**"]
},
"pack": {
"dependsOn": ["^pack"],
"cache": false
},
"clean:cache": {
"cache": false
},
"clean:dist": {
"cache": false
},
"clean:modules": {
"cache": false
}
}
}