mirror of
https://github.com/quartz-community/external-quartz-leaflet-map-plugin.git
synced 2026-07-22 03:00:24 +00:00
- Update types/globals.d.ts with centralized type declarations - Add .prettierignore, update .eslintrc.json with triple-slash-reference override - Remove duplicate scripts.d.ts/styles.d.ts if present
34 lines
944 B
JSON
34 lines
944 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022", "DOM"],
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"verbatimModuleSyntax": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"include": [
|
|
"src/index.ts",
|
|
"src/view.tsx",
|
|
"src/types.ts",
|
|
"src/scripts/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"types",
|
|
"tsup.config.ts"
|
|
],
|
|
"exclude": ["dist", "node_modules", "src/plugins", "src/util", "src/build.ts"]
|
|
}
|