Skip to content
Snippets Groups Projects
tsconfig.json 495 B
Newer Older
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
{
  "compileOnSave": false,
  "compilerOptions": {
Joe Van Boxtel's avatar
Joe Van Boxtel committed
    "baseUrl": "./src",
    "paths": {
      "@app/*": ["app/*"],
      "@env/*": ["environments/*"]
    },
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "es2015",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2017",
      "dom"
    ]
  }
}