1
0
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:
Gastón Fournier 2023-03-10 12:43:41 +01:00 committed by GitHub
parent 3caf50db4b
commit 71a0514901
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@
"scripts": { "scripts": {
"start": "node ./dist/server.js", "start": "node ./dist/server.js",
"prestart:dev": "yarn run clean", "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/", "copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",
"db-migrate": "db-migrate --migrations-dir ./src/migrations", "db-migrate": "db-migrate --migrations-dir ./src/migrations",
"lint": "eslint ./src", "lint": "eslint ./src",