Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"linksheet",
"Maricopa",
"mdsvex",
"navigations",
"neteng",
"netpro",
"netwk",
Expand All @@ -43,6 +44,8 @@
"ntfy",
"obtainium",
"posthog",
"prefs",
"reconsent",
"SIEM",
"SPDY",
"stylelintignore",
Expand Down
16 changes: 1 addition & 15 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
/* =========================================================================
jsconfig.json

Copyright © 2025 Network Pro Strategies (Network Pro™)
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
This file is part of Network Pro.
========================================================================= */

{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
Expand All @@ -19,12 +11,6 @@ This file is part of Network Pro.
"strict": true,
"moduleResolution": "bundler"
},
"exclude": ["vite.config.js"], // Exclude the config file if needed
"exclude": ["vite.config.js"],
"include": ["src", "src/global.d.ts", "src/service-worker.js"]

// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/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
}
32 changes: 32 additions & 0 deletions jsconfig.template.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/* =========================================================================
jsconfig.template.jsonc

NOTE: This file is for reference only and is not actively used by SvelteKit or tooling. SvelteKit uses the jsconfig.json file without comments for actual configuration.

Copyright © 2025 Network Pro Strategies (Network Pro™)
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
This file is part of Network Pro.
========================================================================= */

{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
},
"exclude": ["vite.config.js"], // Exclude the config file if needed
"include": ["src", "src/global.d.ts", "src/service-worker.js"]

// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/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
}
1 change: 0 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[build]
command = "npm run build"
publish = "build"

[build.environment]
NODE_VERSION = "22"
Expand Down
Loading