# tableberg/1.1.5/tsconfig.json

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 40 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/tsconfig.json
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/tsconfig.json
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/tsconfig.json#L10-L20`.

```json
{
    "$schema": "https://json.schemastore.org/tsconfig.json",
    "compilerOptions": {
        "target": "ES2015",
        "lib": ["es2019", "dom"],
        "module": "ESNext",
        "skipLibCheck": true,

        "moduleResolution": "bundler",
        "resolveJsonModule": true,
        "isolatedModules": true,
        "noEmit": true,
        "jsx": "react-jsx",

        "strict": true,

        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "paths": {
            // Project-specific paths
            "@tableberg/components": ["./components"],
            "@tableberg/components/*": ["./components/*"],
            "@tableberg/shared/*": ["./shared/*"],

            // WordPress internal types (not exported from main index)
            // These paths allow importing types from build-types directories
            // Example: import { WPCompleter } from "@wordpress/components/build-types/autocomplete/types"
            "@wordpress/components/build-types/*": [
                "./node_modules/@wordpress/components/build-types/*"
            ],
            "@wordpress/block-editor/build-types/*": [
                "./node_modules/@wordpress/block-editor/build-types/*"
            ],
            "@wordpress/components/build-types/autocomplete/types": [
                "./typings/wordpress__components__autocomplete.d.ts"
            ]
        }
    }
}

```
