-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproject.json
More file actions
33 lines (33 loc) · 986 Bytes
/
Copy pathproject.json
File metadata and controls
33 lines (33 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "explored-types",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/explored-types/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"options": {
"useLegacyTypescriptPlugin": true,
"outputPath": "dist/libs/explored-types",
"tsConfig": "libs/explored-types/tsconfig.lib.json",
"project": "libs/explored-types/package.json",
"entryFile": "libs/explored-types/src/index.ts",
"external": ["react/jsx-runtime"],
"compiler": "tsc",
"outputFileName": "index.js",
"rollupConfig": "libs/explored-types/rollup.config.js",
"format": ["esm", "cjs"],
"assets": [
{
"glob": "libs/explored-types/*.md",
"input": ".",
"output": "."
}
]
},
"configurations": {}
}
}
}