1
+ {
2
+ "name" : " noir-compiler" ,
3
+ "$schema" : " ../../node_modules/nx/schemas/project-schema.json" ,
4
+ "sourceRoot" : " apps/noir-compiler/src" ,
5
+ "projectType" : " application" ,
6
+ "implicitDependencies" : [],
7
+ "targets" : {
8
+ "build" : {
9
+ "executor" : " @nrwl/webpack:webpack" ,
10
+ "outputs" : [" {options.outputPath}" ],
11
+ "defaultConfiguration" : " development" ,
12
+ "options" : {
13
+ "compiler" : " babel" ,
14
+ "outputPath" : " dist/apps/noir-compiler" ,
15
+ "index" : " apps/noir-compiler/src/index.html" ,
16
+ "baseHref" : " ./" ,
17
+ "main" : " apps/noir-compiler/src/main.tsx" ,
18
+ "polyfills" : " apps/noir-compiler/src/polyfills.ts" ,
19
+ "tsConfig" : " apps/noir-compiler/tsconfig.app.json" ,
20
+ "assets" : [" apps/noir-compiler/src/profile.json" , " apps/noir-compiler/src/snarkjs.min.js" ],
21
+ "styles" : [" apps/noir-compiler/src/css/app.css" ],
22
+ "scripts" : [],
23
+ "webpackConfig" : " apps/noir-compiler/webpack.config.js"
24
+ },
25
+ "configurations" : {
26
+ "development" : {
27
+ },
28
+ "production" : {
29
+ "fileReplacements" : [
30
+ {
31
+ "replace" : " apps/noir-compiler/src/environments/environment.ts" ,
32
+ "with" : " apps/noir-compiler/src/environments/environment.prod.ts"
33
+ }
34
+ ]
35
+ }
36
+ }
37
+ },
38
+ "lint" : {
39
+ "executor" : " @nrwl/linter:eslint" ,
40
+ "outputs" : [" {options.outputFile}" ],
41
+ "options" : {
42
+ "lintFilePatterns" : [" apps/noir-compiler/**/*.ts" ],
43
+ "eslintConfig" : " apps/noir-compiler/.eslintrc"
44
+ }
45
+ },
46
+ "serve" : {
47
+ "executor" : " @nrwl/webpack:dev-server" ,
48
+ "defaultConfiguration" : " development" ,
49
+ "options" : {
50
+ "buildTarget" : " noir-compiler:build" ,
51
+ "hmr" : true ,
52
+ "baseHref" : " /"
53
+ },
54
+ "configurations" : {
55
+ "development" : {
56
+ "buildTarget" : " noir-compiler:build:development" ,
57
+ "port" : 2023
58
+ },
59
+ "production" : {
60
+ "buildTarget" : " noir-compiler:build:production"
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "tags" : []
66
+ }
67
+
0 commit comments