Skip to content

Commit

Permalink
migration to @sveltejs/package v2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobBrazier committed Mar 3, 2023
1 parent 20795a5 commit 3f1b832
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 36 deletions.
17 changes: 17 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
8 changes: 4 additions & 4 deletions src/routes/icons/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
</style>

<script lang="ts">
import * as icons from '../lib/icons';
import data from '../lib/icons/icons.json';
import Icon from '../lib/components/Icon.svelte';
import * as icons from '@/lib/icons';
import data from '@/lib/icons/icons.json';
import Icon from '@/lib/components/Icon.svelte';
import '../global.css';
import '@/global.css';
import {HighlightSvelte} from "svelte-highlight";
import atomOneLight from "svelte-highlight/styles/atom-one-light";
Expand Down
32 changes: 0 additions & 32 deletions tsconfig.json

This file was deleted.

0 comments on commit 3f1b832

Please sign in to comment.