department-of-veterans-affairs/vets-website

View on GitHub
src/applications/check-in/pre-check-in/jsconfig-example.json

Summary

Maintainability
Test Coverage
{
  "compilerOptions": {
    "baseUrl": ".",
    // resolve platform components to the correct directory
    "paths": {
      "platform/*": ["../../platform/*"]
    },
    "jsx": "react",
    // enable type checking on JS files
    // this makes adding @ts-check to individual files unnecessary
    "checkJs": true
  },
  // Check all files in the utils directory
  "include": ["utils/**/*"],
  // Include mocha types in tests
  "typeAcquisition": {
    "include": ["mocha"]
  }
}