tsconfig.json 1.2 KB

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. /* Visit https://aka.ms/tsconfig to read more about this file */
  4. /* Language and Environment */
  5. "target": "ES6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
  6. /* Modules */
  7. "module": "ESNext", /* Specify what module code is generated. */
  8. "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
  9. /* Interop Constraints */
  10. "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
  11. "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
  12. /* Type Checking */
  13. "strict": true, /* Enable all strict type-checking options. */
  14. /* Completeness */
  15. "skipLibCheck": true /* Skip type checking all .d.ts files. */
  16. },
  17. "include": ["src/**/*.ts"],
  18. "exclude": ["node_modules"]
  19. }