mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"name": "apps-ui",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/ui/src",
|
|
"projectType": "application",
|
|
"prefix": "nativescript",
|
|
"namedInputs": {
|
|
"default": ["{projectRoot}/**/*"],
|
|
"production": ["!{projectRoot}/**/*.spec.ts"]
|
|
},
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nativescript/nx:build",
|
|
"options": {
|
|
"noHmr": true,
|
|
"production": true,
|
|
"uglify": true,
|
|
"release": true,
|
|
"forDevice": true
|
|
},
|
|
"configurations": {},
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"debug": {
|
|
"executor": "@nativescript/nx:debug",
|
|
"options": {
|
|
"noHmr": true,
|
|
"uglify": false,
|
|
"release": false,
|
|
"forDevice": false,
|
|
"prepare": false
|
|
},
|
|
"configurations": {},
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"prepare": {
|
|
"executor": "@nativescript/nx:prepare",
|
|
"options": {
|
|
"noHmr": true,
|
|
"production": true,
|
|
"uglify": true,
|
|
"release": true,
|
|
"forDevice": true,
|
|
"prepare": true
|
|
},
|
|
"configurations": {},
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean": {
|
|
"executor": "@nativescript/nx:clean",
|
|
"options": {}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/ui/**/*.ts", "apps/ui/src/**/*.html"]
|
|
}
|
|
}
|
|
},
|
|
"implicitDependencies": ["webpack5"]
|
|
}
|