mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-15 21:45:35 +08:00
Typescript 5.7 changed semantics around JSON imports and `nodenext` is now [treated differently](https://devblogs.microsoft.com/typescript/announcing-typescript-5-7-beta/#validated-json-imports-in---module-nodenext) than `node16` for JSON imports and it requires the import attribute, so change the value to that and add the attribute to eliminate this typescript error. [`moduleResolution`](https://www.typescriptlang.org/tsconfig/#moduleResolution) is treated as an alias when `module` is `nodenext`, so we don't need to specify it. Also see https://github.com/microsoft/TypeScript/issues/60589. It appears the next Typescript release will fix this for `node16`, but I guess it'll still be good to switch to `nodenext`. |
||
|---|---|---|
| .. | ||
| color.test.ts | ||
| color.ts | ||
| dom.test.ts | ||
| dom.ts | ||
| image.test.ts | ||
| image.ts | ||
| match.test.ts | ||
| match.ts | ||
| testhelper.ts | ||
| time.test.ts | ||
| time.ts | ||
| url.test.ts | ||
| url.ts | ||