tsconfig.json 396 B

1234567891011121314151617
  1. {
  2. "include": ["dev/**/*.js", "test/**/*.js"],
  3. "compilerOptions": {
  4. "target": "ES2020",
  5. "lib": ["ES2020"],
  6. "module": "ES2020",
  7. "moduleResolution": "node",
  8. "allowJs": true,
  9. "checkJs": true,
  10. "declaration": true,
  11. "emitDeclarationOnly": true,
  12. "allowSyntheticDefaultImports": true,
  13. "skipLibCheck": true,
  14. "strict": true,
  15. "noImplicitThis": false
  16. }
  17. }