tsconfig.json 229 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
{
  "compilerOptions": {
    "target": "ES2018",
    "module": "commonjs",
    "lib": ["es6","dom"],
    "outDir": "lib",
    "rootDir": "src",
    "strict": true,
    "esModuleInterop": true,
    "resolveJsonModule": true
  }
}