Prepare for adding theseus

This commit is contained in:
Jai A
2024-07-03 13:25:49 -07:00
parent 10785f156f
commit d33a0cd589
26 changed files with 23 additions and 1 deletions

View File

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