radgrad/radgrad2

View on GitHub
app/tsconfig.json

Summary

Maintainability
Test Coverage
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "alwaysStrict": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": false,
    "esModuleInterop": true,
    "sourceMap": true,
    "jsx": "react",
    "lib": [
      "dom",
      "es2015"
    ],
    "allowJs": false,
    "noImplicitAny": false,
    "strictNullChecks": false
  },
  "include": [
    "client/**/*.ts",
    "client/**/*.tsx",
    "server/**/*.ts",
    "server/**/*.tsx",
    "imports/**/*.ts",
    "imports/**/*.tsx"
  ],
  "exclude": [
    "node_modules",
    ".meteor"
  ]
}