|
35 | 35 | "scripts": {
|
36 | 36 | "start": "TZ=UTC node ./dist/server.js",
|
37 | 37 | "copy-templates": "copyfiles -u 1 src/mailtemplates/**/* dist/",
|
38 |
| - "build:backend": "tsc --pretty --strictNullChecks false", |
| 38 | + "build:backend": "tsc --pretty", |
39 | 39 | "build:frontend": "yarn --cwd ./frontend run build",
|
40 | 40 | "build:frontend:if-needed": "./scripts/build-frontend-if-needed.sh",
|
41 | 41 | "build": "yarn run clean && concurrently \"yarn:copy-templates\" \"yarn:build:frontend\" \"yarn:build:backend\"",
|
42 |
| - "dev:backend": "TZ=UTC NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"", |
| 42 | + "dev:backend": "TZ=UTC NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"", |
43 | 43 | "dev:frontend": "wait-on tcp:4242 && yarn --cwd ./frontend run dev",
|
44 | 44 | "dev:frontend:cloud": "UNLEASH_BASE_PATH=/demo/ yarn run dev:frontend",
|
45 | 45 | "dev": "concurrently \"yarn:dev:backend\" \"yarn:dev:frontend\"",
|
46 | 46 | "prepare:backend": "concurrently \"yarn:copy-templates\" \"yarn:build:backend\"",
|
47 |
| - "start:dev": "yarn run clean && TZ=UTC NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"", |
| 47 | + "start:dev": "yarn run clean && TZ=UTC NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"", |
48 | 48 | "db-migrate": "db-migrate --migrations-dir ./src/migrations",
|
49 | 49 | "lint": "biome check .",
|
50 | 50 | "lint:fix": "biome check . --write",
|
51 | 51 | "local:package": "del-cli --force build && mkdir build && cp -r dist docs CHANGELOG.md LICENSE README.md package.json build",
|
52 |
| - "build:watch": "yarn run clean && tsc -w --strictNullChecks false", |
| 52 | + "build:watch": "tsc -w", |
53 | 53 | "prepare": "husky && yarn --cwd ./frontend install && if [ ! -d ./dist ]; then yarn build; fi",
|
54 | 54 | "test": "NODE_ENV=test PORT=4243 node --trace-warnings node_modules/.bin/jest",
|
55 | 55 | "test:unit": "NODE_ENV=test PORT=4243 jest --testPathIgnorePatterns=src/test/e2e --testPathIgnorePatterns=dist",
|
|
60 | 60 | "test:coverage": "NODE_ENV=test PORT=4243 jest --coverage --testLocationInResults --outputFile=\"coverage/report.json\" --forceExit",
|
61 | 61 | "test:coverage:jest": "NODE_ENV=test PORT=4243 jest --silent --ci --json --coverage --testLocationInResults --outputFile=\"report.json\" --forceExit",
|
62 | 62 | "test:updateSnapshot": "NODE_ENV=test PORT=4243 jest --updateSnapshot",
|
63 |
| - "seed:setup": "ts-node --compilerOptions '{\"strictNullChecks\": false}' src/test/e2e/seed/segment.seed.ts", |
| 63 | + "seed:setup": "ts-node src/test/e2e/seed/segment.seed.ts", |
64 | 64 | "seed:serve": "UNLEASH_DATABASE_NAME=unleash_test UNLEASH_DATABASE_SCHEMA=seed yarn run start:dev",
|
65 | 65 | "clean": "del-cli --force dist",
|
66 | 66 | "heroku-postbuild": "cd frontend && yarn && yarn build",
|
|
220 | 220 | "supertest": "7.0.0",
|
221 | 221 | "ts-node": "10.9.2",
|
222 | 222 | "tsc-watch": "6.2.1",
|
223 |
| - "typescript": "5.4.5", |
| 223 | + "typescript": "5.8.2", |
224 | 224 | "wait-on": "^7.2.0"
|
225 | 225 | },
|
226 | 226 | "resolutions": {
|
|
0 commit comments