38 lines
931 B
JSON
38 lines
931 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", "bin/newComponent/template/**/*"]
|
|
}
|