tsconfig.json 289 Bytes
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "jsx": "react",
        "module": "esnext",
        "moduleResolution": "node",
        "outDir": "build",
        "rootDir": "src",
        "target": "es2017"
    },
    "include": [
        "src/*"
    ]
}