Skip to content

Commit

Permalink
feat: upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Sep 18, 2024
1 parent 4904129 commit e478fa5
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 36 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- uses: taiga-family/ci/actions/setup/checkout@v1.76.0
- uses: taiga-family/ci/actions/setup/variables@v1.76.0
- uses: taiga-family/ci/actions/setup/node@v1.76.0
- run: npx ng build
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npx stylelint '**/*.{less,css}' --fix
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
.angular
dist
node_modules
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.nx
.idea
.angular
dist
.gitignore
.prettierignore
package-lock.json
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"polyfills": ["zone.js"],
"scripts": [],
"styles": ["src/styles.less"],
"tsConfig": "tsconfig.app.json",
"tsConfig": "tsconfig.json",
"server": "src/main.server.ts",
"prerender": true,
"ssr": {
Expand Down
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"@ng-web-apis/universal": "4.2.1",
"@taiga-ui/addon-charts": "4.7.0",
"@taiga-ui/addon-commerce": "4.7.0",
"@taiga-ui/addon-doc": "4.7.0",
"@taiga-ui/addon-mobile": "4.7.0",
"@taiga-ui/addon-table": "4.7.0",
"@taiga-ui/cdk": "4.7.0",
Expand All @@ -43,10 +44,10 @@
"@taiga-ui/kit": "4.7.0",
"@taiga-ui/layout": "4.7.0",
"@taiga-ui/legacy": "4.7.0",
"@taiga-ui/addon-doc": "4.7.0",
"@taiga-ui/prettier-config": "0.200.0",
"@taiga-ui/stylelint-config": "0.200.0",
"@taiga-ui/styles": "4.7.0",
"@taiga-ui/tsconfig": "0.200.0",
"@types/express": "4.17.17",
"@types/node": "22.5.0",
"express": "4.18.2",
Expand Down
10 changes: 0 additions & 10 deletions tsconfig.app.json

This file was deleted.

31 changes: 8 additions & 23 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,15 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"extends": "@taiga-ui/tsconfig",
"compilerOptions": {
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"baseUrl": "./",
"outDir": "./dist",
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"]
"typeRoots": ["node_modules/@types"],
"lib": ["ES2022", "dom"],
"types": ["node"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
"files": ["src/main.ts", "src/main.server.ts", "server.ts"],
"include": ["src/**/*.d.ts"]
}

0 comments on commit e478fa5

Please sign in to comment.