super-productivity/packages/plugin-dev/automations/tsconfig.json
2025-12-02 13:30:37 +01:00

20 lines
532 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"moduleResolution": "node",
"jsx": "preserve",
"jsxImportSource": "solid-js",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"types": ["vite/client", "node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}