{ "compilerOptions": { "allowSyntheticDefaultImports": true, // Solid specific settings "jsx": "preserve", "jsxImportSource": "solid-js", // Enable top-level await and other modern ESM features. "target": "ESNext", "module": "ESNext", // Enable node-style module resolution, for things like npm package imports. "moduleResolution": "node", // Enable JSON imports. "resolveJsonModule": true, "skipLibCheck": true, "isolatedModules": true, "lib": ["es2023", "dom"] } }