hypnagaga/tsconfig.json
Ben Aultowski d04c218f36 Squashed 'graphics-components-src/' content from commit 247be9ce
git-subtree-dir: graphics-components-src
git-subtree-split: 247be9ce40bd338d3934534fb6392504a0cdc81f
2026-02-25 21:21:50 -05:00

38 lines
897 B
JSON

{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"lib": ["DOM", "ESNext"],
"module": "ESNext",
"target": "ESNext",
"declaration": true,
"isolatedModules": true,
"esModuleInterop": true,
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"emitDeclarationOnly": true,
"jsx": "react",
"rootDir": ".",
"rootDirs": [".", "docs/docs-components"],
"outDir": "dist",
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte",
"src/**/*.{jsx,tsx}",
"bin/**/*.{js,cjs}",
"*.ts",
"*.js",
"*.cjs",
"src/journalize.d.ts",
"src/docs/**/*.css"
],
"exclude": ["dist", "eslint.config.js"]
}