nitro/libs/renderer/project.json

27 lines
687 B
JSON

{
"name": "renderer",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/renderer/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:swc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/renderer",
"main": "libs/renderer/src/index.ts",
"tsConfig": "libs/renderer/tsconfig.lib.json",
"assets": ["libs/renderer/*.md"]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/renderer/**/*.ts"]
}
}
},
"tags": []
}