about summary refs log tree commit diff
path: root/users/Profpatsch/lyric/tsconfig.json
blob: f3c47a381e20a32b49685b4311387dd4298ddd19 (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"
    ]
}