UNPKG

@indexea/scaffold-svelte

Version:

This is the scaffolding of Indexea search, on which you can adjust the typography and style of the search interface

49 lines (48 loc) 968 B
{ "extends": "@tsconfig/svelte/tsconfig.json", "compilerOptions": { "target": "esnext", "useDefineForClassFields": true, "module": "esnext", "resolveJsonModule": true, "baseUrl": ".", "strict": true, "jsx": "preserve", "importHelpers": true, "moduleResolution": "node", "skipLibCheck": true, "noImplicitThis": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": false, "sourceMap": true, "types": [ ], "allowJs": true, "checkJs": false, "paths": { "@/*": [ "src/*" ], "$api/*": [ "src/api/*" ] }, "lib": [ "esnext", "dom", "dom.iterable", "scripthost" ] }, "include": [ "src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte", ], "exclude": [ "node_modules" ], "references": [{ "path": "./tsconfig.node.json" }] }