feat(project-crud-sync): add planning artifacts for CRUD project lifecycle #5

Open
NHoarau wants to merge 14 commits from feat/create-projects into main
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 58dc4e194e - Show all commits

View file

@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"incremental": true,
"incremental": false,
"types": ["jest", "node"]
},
"include": ["src/**/*"],

View file

@ -23,8 +23,8 @@
}
},
"scripts": {
"build": "rolldown -c rolldown.config.ts --clean-dir && tsc --declaration --emitDeclarationOnly --outDir dist",
"dev": "rolldown -c rolldown.config.ts --clean-dir --watch",
"build": "tsc --declaration --emitDeclarationOnly --outDir dist && rolldown -c rolldown.config.ts",
"dev": "rolldown -c rolldown.config.ts --watch",
"clean": "rm -rf dist",
"check-types": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" --fix",

View file

@ -11,7 +11,7 @@
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
"dependsOn": ["^build", "^check-types"]
},
"dev": {
"cache": false,