Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tsconfig.json - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 210eb2d4b7e802e9168cb1096eb4572a2eb7a1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "include": [
        "./js/global.d.ts",
        "./js/src/**/*"
    ],
    "compilerOptions": {
        "target": "es6",
        "module": "es6",
        "allowJs": true,
        "declaration": true,
        "emitDeclarationOnly": true,
        "declarationMap": true,
        "checkJs": true,
        "outDir": "./build/js",
        "allowSyntheticDefaultImports": true
    }
}