Files
AstralRinth/apps/theseus_playground/project.json
2024-07-03 16:03:41 -07:00

56 lines
1.3 KiB
JSON

{
"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": []
}