aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 1e8934ee8ca3801db0d04de76c963f5c34a643af (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": "ES2017",
        "downlevelIteration": true,
        "removeComments": true,
        "experimentalDecorators": true,
        "allowSyntheticDefaultImports": true,
        "moduleDetection": "auto",
        "strict": true,
        "jsx": "react",
        "allowJs": true,
        "sourceMap": true,
        "outDir": "dist",
        "lib": ["dom", "es2017"],
        "typeRoots": ["node_modules/@types", "./src/typings"],
        "types": ["youtube", "node"],
        "resolveJsonModule": true,
        "moduleResolution": "node"
    },
    // "exclude": [
    //   "node_modules",
    //   "static"
    // ],
    "typeRoots": ["./node_modules/@types", "./src/typings"]
}