Skip to content

Commit

Permalink
build: reuse angular compiler options and disable typescript version …
Browse files Browse the repository at this point in the history
…check
  • Loading branch information
marcus-sa committed Sep 12, 2023
1 parent ec61bae commit 9ffdea6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 33 deletions.
6 changes: 0 additions & 6 deletions packages/api-console-gui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
}
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"reflection": [
"src/app/store.ts"
]
Expand Down
8 changes: 1 addition & 7 deletions packages/desktop-ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,5 @@
"path": "./tsconfig.spec.json"
}
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
"extends": "../../tsconfig.base.json"
}
8 changes: 1 addition & 7 deletions packages/framework-debug-gui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,5 @@
"path": "./tsconfig.editor.json"
}
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
"extends": "../../tsconfig.base.json"
}
6 changes: 0 additions & 6 deletions packages/orm-browser-gui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
}
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"reflection": [
"src/app/store.ts"
]
Expand Down
8 changes: 1 addition & 7 deletions packages/ui-library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,5 @@
"path": "./tsconfig.spec.json"
}
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
"extends": "../../tsconfig.base.json"
}
7 changes: 7 additions & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,12 @@
"@deepkit/workflow": ["packages/workflow/src/index.ts"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"disableTypeScriptVersionCheck": true
},
"exclude": ["node_modules", "tmp"]
}

0 comments on commit 9ffdea6

Please sign in to comment.