old-portfolio-site/tsconfig.json

38 lines
993 B
JSON
Raw Normal View History

2023-11-01 23:36:58 +00:00
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
2024-04-04 00:39:54 +00:00
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
// custom compiler options
"noEmit": true,
"target": "ES2018",
"module": "ES2022",
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true
},
2024-04-04 00:39:54 +00:00
"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",
2024-04-12 17:09:07 +00:00
"./csp-directives.ts",
"./src/content/**/*"
2024-04-04 00:39:54 +00:00
],
"exclude": ["node_modules/*"]
2023-11-01 23:36:58 +00:00
// 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
// from the referenced tsconfig.json - TypeScript does not merge them in
}