mirror of
https://github.com/Damillora/Rinze.git
synced 2024-11-23 04:07:32 +00:00
feat: fix building with newer sveltekit
This commit is contained in:
parent
649bf4e207
commit
a0fcc161f7
@ -1,15 +1,19 @@
|
||||
<script>
|
||||
import PageHeader from "$lib/components/PageHeader.svelte";
|
||||
import PageHeader from '@damillora/plachta/components/PageHeader/PageHeader.svelte';
|
||||
import Container from '@damillora/plachta/components/Container/Container.svelte';
|
||||
import Post from '@damillora/plachta/components/PageTypes/Post.svelte';
|
||||
import PostMain from '@damillora/plachta/components/Post/PostMain.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Damillora: Game Profile</title>
|
||||
<title>Damillora: Game Profile</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="page">
|
||||
<PageHeader>
|
||||
<h1>Game Profile: maimai DX</h1>
|
||||
<p><a href="https://maimai.sega.com/">Game Website</a></p>
|
||||
</PageHeader>
|
||||
<main class="container mx-auto main" />
|
||||
</div>
|
||||
<Container>
|
||||
<Post>
|
||||
<PageHeader>
|
||||
<h1>Game Profile: maimai DX</h1>
|
||||
<p><a href="https://maimai.sega.com/">Game Website</a></p>
|
||||
</PageHeader>
|
||||
</Post>
|
||||
</Container>
|
||||
|
@ -2,7 +2,9 @@
|
||||
"compilerOptions": {
|
||||
"moduleResolution": "node",
|
||||
"module": "es2020",
|
||||
"lib": ["es2020"],
|
||||
"lib": [
|
||||
"es2020"
|
||||
],
|
||||
"target": "es2019",
|
||||
/**
|
||||
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
||||
@ -23,8 +25,19 @@
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"paths": {
|
||||
"$lib/*": ["src/lib/*"]
|
||||
"$lib": [
|
||||
"src/lib"
|
||||
],
|
||||
"$lib/*": [
|
||||
"src/lib/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/**/*.svelte"]
|
||||
}
|
||||
"include": [
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.js",
|
||||
"src/**/*.ts",
|
||||
"src/**/*.svelte"
|
||||
],
|
||||
"extends": "./.svelte-kit/tsconfig.json"
|
||||
}
|
Loading…
Reference in New Issue
Block a user