its-personal/tsconfig.json

26 lines
825 B
JSON
Raw Normal View History

2023-11-01 23:36:58 +00:00
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"target": "esnext",
"module": "esnext",
2024-02-13 15:42:36 +00:00
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
// custom compiler options
2023-11-01 23:36:58 +00:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true
},
2024-02-13 15:42:36 +00:00
"include": ["./scripts/**/*", "./test/*.js", "./*.js", "mdsvex.config.ts", "svelte.config.ts"],
"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
}