mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
fix: ignore null check on tsc-watch (#3297)
## About the changes This allows us to run start:dev
This commit is contained in:
parent
3caf50db4b
commit
71a0514901
@ -29,7 +29,7 @@
|
||||
"scripts": {
|
||||
"start": "node ./dist/server.js",
|
||||
"prestart:dev": "yarn run clean",
|
||||
"start:dev": "NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"",
|
||||
"start:dev": "NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"",
|
||||
"copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",
|
||||
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
|
||||
"lint": "eslint ./src",
|
||||
|
Loading…
Reference in New Issue
Block a user