-
Notifications
You must be signed in to change notification settings - Fork 991
[release/13.3] Fix Python starter TypeScript health check build #16647
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
af1c49f
493664e
c3e95ad
ed2cf5d
9d9ab87
94b9792
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "compilerOptions": { | ||
| "target": "ES2022", | ||
| "module": "NodeNext", | ||
| "moduleResolution": "NodeNext", | ||
| "esModuleInterop": true, | ||
| "forceConsistentCasingInFileNames": true, | ||
| "skipLibCheck": true, | ||
| "outDir": "./dist/apphost", | ||
| "rootDir": ".", | ||
| "strict": true | ||
| }, | ||
| "include": ["apphost.ts", ".modules/**/*.ts"], | ||
| "exclude": ["node_modules"] | ||
| } |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,8 @@ export default defineConfig({ | |
| extends: [tseslint.configs.base], | ||
| languageOptions: { | ||
| parserOptions: { | ||
| projectService: true, | ||
| project: './tsconfig.apphost.json', | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is different than the python template. Is that intentional?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It feels like python and ts should drop the exact same apphost files, unless there is a specific reason not to.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of adapting I should have aligned the two, doing it now, but on the main branch first
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| tsconfigRootDir: import.meta.dirname, | ||
| }, | ||
| }, | ||
| rules: { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is outside your change - but why is this file named
tsconfig.jsonwhen the TypeScript template names ittsconfig.apphost.json?