-
Notifications
You must be signed in to change notification settings - Fork 36
Update TypeScript config (and fix vitamin type) #222
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
base: main
Are you sure you want to change the base?
Changes from 3 commits
4e06318
5f7f831
87fbea2
d683844
cc63f2d
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 |
|---|---|---|
|
|
@@ -2,8 +2,6 @@ | |
| "extends": "@tsconfig/svelte/tsconfig.json", | ||
| "compilerOptions": { | ||
| "target": "esnext", | ||
| "useDefineForClassFields": true, | ||
| "module": "esnext", | ||
| "resolveJsonModule": true, | ||
| "baseUrl": ".", | ||
| /** | ||
|
|
@@ -14,9 +12,7 @@ | |
| */ | ||
| "allowJs": true, | ||
| "checkJs": true, | ||
| "isolatedModules": true, | ||
| "strict": true, | ||
| "ignoreDeprecations": "5.0" | ||
| "noEmit": true | ||
|
Owner
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. why these changes? noEmit: true seems in particular an odd change here.
Author
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.
Everything else naturally propagates to the project from Svelte's TypeScript config. |
||
| }, | ||
| "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"], | ||
| "references": [{ "path": "./tsconfig.node.json" }] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.