aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 7edbc7b3dca7e49730ac435f74575e381f0f6b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "compilerOptions": {
        "rootDir": "./src",
        "outDir": "./dist",

        "lib": [ "esnext" ],
        "target": "ESNext",
        "module": "CommonJS",
        "types": [ "node" ]
    },

    "ts-node": {
        "esm": false,
        "transpileOnly": true,

        "require": [ "tsconfig-paths/register" ]
    }
}