Recent Overhaul to content structure, simplifying, read README #1

Merged
Madmin merged 13 commits from rand into master 2024-03-20 15:23:11 +00:00
1 changed files with 27 additions and 2 deletions
Showing only changes of commit 758ab0aeae - Show all commits

View File

@ -8,8 +8,33 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
"strict": true,
// custom compiler options
"noEmit": true,
"target": "ES2018",
"module": "ES2022",
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"paths": {
"$root/*": ["/*"],
"$src/*": ["src/*"],
"$lib/*": ["src/lib/*"],
"$routes/*": ["src/routes/*"],
}
},
"include": [
"./scripts/**/*",
"./test/*.js",
"./*.js",
"./src/**/*.d.ts",
"./src/**/*.js",
"./src/**/*.svelte",
"./src/**/*.ts",
".svelte-kit/ambient.d.ts",
".svelte-kit/types/**/$types.d.ts",
"./csp-directives.ts"
],
"exclude": ["node_modules/*"]
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes