rename src/tsconfig to tsconfig.build

This commit is contained in:
Jacob Overgaard
2023-07-27 10:07:10 +02:00
parent a7c6957e3c
commit 2b65a78f67
2 changed files with 2 additions and 2 deletions

View File

@@ -87,11 +87,11 @@
},
"scripts": {
"dev": "vite",
"build": "tsc --project ./src/tsconfig.json && rollup -c ./src/rollup.config.js",
"build": "tsc --project ./src/tsconfig.build.json && rollup -c ./src/rollup.config.js",
"build:vite": "tsc && vite build --mode staging",
"build:for:static": "vite build",
"build:for:cms": "npm run build && node ./devops/build/copy-to-cms.js",
"build:for:npm": "npm run build && tsc-alias -f -p src/tsconfig.json && npm run generate:jsonschema:dist && npm run wc-analyze && npm run wc-analyze:vscode",
"build:for:npm": "npm run build && tsc-alias -f -p src/tsconfig.build.json && npm run generate:jsonschema:dist && npm run wc-analyze && npm run wc-analyze:vscode",
"preview": "vite preview --open",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",