aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: b2f7bbe362b4731a86b07277b3026a3317689898 (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": {
        "target": "ES2019",
        "module": "ESNext",
        "moduleResolution": "node",
        "lib": [
            "DOM",
            "ES2019"
        ],
        "declaration": false,
        "outDir": "build",
        "strict": true,
        "esModuleInterop": true,
        "skipLibCheck": true,
        "resolveJsonModule": true,
        "isolatedModules": true,
        "forceConsistentCasingInFileNames": true,
        "types": [
            "firefox-webext-browser"
        ]
    },
    "include": [
        "src"
    ]
}