Skip to content
Snippets Groups Projects
tsconfig.json 592 B
Newer Older
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
{
  "compileOnSave": false,
  "compilerOptions": {
    "strictNullChecks": true,
Joe Van Boxtel's avatar
Joe Van Boxtel committed
    "baseUrl": "./src",
    "importHelpers": true,
Joe Van Boxtel's avatar
Joe Van Boxtel committed
    "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",
      "./src/app/shared/operators/type.definitions.d.ts"
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
    ],
    "lib": ["es2017", "dom"]