This repository has been archived on 2025-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx20-tsref/tools/nest/package.json

56 lines
1.2 KiB
JSON

{
"name": "@repo/nest",
"version": "0.0.1",
"private": true,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"nx": {
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "tools/nest/dist",
"main": "tools/nest/src/index.ts",
"tsConfig": "tools/nest/tsconfig.lib.json",
"rootDir": "tools/nest/src",
"generatePackageJson": false,
"assets": [
{
"input": "./tools/nest/src",
"glob": "**/!(*.ts)",
"output": "."
},
{
"input": "./tools/nest/src",
"glob": "**/*.d.ts",
"output": "."
}
]
}
}
}
},
"dependencies": {
"@nx/devkit": "20.4.0",
"tslib": "^2.3.0"
},
"generators": "./generators.json",
"files": [
"dist",
"!**/*.tsbuildinfo",
"generators.json"
]
}