tsconfig.json 589 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
{
    "compilerOptions": {
      "moduleResolution": "node",
      "target": "es6",
      "lib": ["es6"],
      "module": "commonjs",
      "declaration": false,
      "allowSyntheticDefaultImports": true,
      "inlineSourceMap": false,
      "sourceMap": true,
      "noEmitOnError": false,
      "emitDecoratorMetadata": false,
      "experimentalDecorators": true,
      "noImplicitReturns": true,
      "noImplicitThis": false,
      "noImplicitUseStrict":false,
      "noImplicitAny": false,
      "noUnusedLocals": true
    },
    "include": [
      "*.ts",
      "**/*.ts"
    ]
}