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

tsconfig.json - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a13e380725f0eaea5027bcd3787d237db1d9c309 (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
26
27
28
29
30
31
32
33
34
35
36
{
    "allowSyntheticDefaultImports": true,
    "allowJs": true,
    "compilerOptions": {
        "baseUrl": "src",
        "paths": {
           "emojione": ["lib/emojione/lib/js/emojione.js"],
           "@connection/*": ["connection/*"],
           "@ui/*": ["ui/*"],
           "@util/*": ["util/*"],
           "@vendor/*": ["vendor/*"],
           "@src/*": ["./*"],
           "@interactjs/interactjs/*": ["../node_modules/@interactjs/interact/*"]
        },
        "moduleResolution": "node",
        "module": "commonjs",
        "outDir": "./dist",
        "target": "es5",
        "lib": ["dom", "ES6"],
        "noUnusedLocals": true,
        "downlevelIteration": true
    },
    "include": [
        "./src/**/*.ts",
        "./template/*.hbs",
        "./*.d.ts",
        "./test/**/*.ts"
    ],
    "exclude": [
       "node_modules",
       "typings"
    ],
    "files": [
      "custom.d.ts"
   ]
}