Finish theseus

This commit is contained in:
Jai A
2024-07-03 16:03:41 -07:00
parent b52467b6d6
commit 22779c9dbc
194 changed files with 7216 additions and 3565 deletions

37
libs/theseus/project.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "theseus",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/theseus/src",
"targets": {
"build": {
"executor": "@monodon/rust:check",
"outputs": ["{options.target-dir}"],
"options": {
"target-dir": "dist/target/theseus"
}
},
"test": {
"cache": true,
"executor": "@monodon/rust:test",
"outputs": ["{options.target-dir}"],
"options": {
"target-dir": "dist/target/theseus"
},
"configurations": {
"production": {
"release": true
}
}
},
"lint": {
"cache": true,
"executor": "@monodon/rust:lint",
"outputs": ["{options.target-dir}"],
"options": {
"target-dir": "dist/target/theseus"
}
}
},
"tags": []
}