about summary refs log tree commit diff
path: root/users/Profpatsch/lyric/tsconfig.json
blob: 26a6a0a82db67fb6f88149b12f029694792588bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "compilerOptions": {
        "target": "ES2017",
        "module": "ESNext",
        "outDir": "dist",
        "strict": true,
        "skipLibCheck": true,
        "sourceMap": true,
        "esModuleInterop": true
    },
    "include": [
        "src/**/*.ts",
    ],
    "exclude": [
        "node_modules"
    ]
}