summaryrefslogtreecommitdiff
path: root/core/gjs/tsconfig.json
blob: b535a07bb6f3946e60eb58749c1f0ef5531379bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
    "compilerOptions": {
        "experimentalDecorators": true,
        "target": "ESNext",
        "module": "ESNext",
        "lib": [
            "ESNext"
        ],
        "outDir": "dist",
        "declaration": true,
        "strict": true,
        "moduleResolution": "Bundler",
        "skipLibCheck": true,
        "checkJs": true,
        "allowJs": true,
        "jsx": "react-jsx",
        "jsxImportSource": "src/jsx",
        "baseUrl": ".",
    },
    "include": [
        "@girs",
        "src/**/*",
        "index.ts"
    ]
}