42 lines
943 B
JSON
42 lines
943 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"emitDeclarationOnly": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"rootDirs": [".", "docs/docs-components"],
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"$lib": ["src"],
|
|
"$lib/*": ["src/*"],
|
|
"$docs": ["src/docs"],
|
|
"$docs/*": ["src/docs/*"]
|
|
},
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": [
|
|
"src/**/*.js",
|
|
"src/**/*.ts",
|
|
"src/**/*.svelte",
|
|
"src/**/*.jsx",
|
|
"bin/**/*.{js,cjs}",
|
|
"*.ts",
|
|
"*.js",
|
|
"*.cjs",
|
|
"src/docs/**/*.css"
|
|
],
|
|
"exclude": ["dist", "eslint.config.js"]
|
|
}
|