tsconfig.json 575 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "lib": ["ESNext", "ESNext.Iterator"],
  5. "module": "nodenext",
  6. "moduleResolution": "nodenext",
  7. "allowImportingTsExtensions": true,
  8. "allowJs": true,
  9. "noEmit": true,
  10. "allowSyntheticDefaultImports": true,
  11. "esModuleInterop": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "strict": true,
  14. "strictNullChecks": true,
  15. "skipLibCheck": true
  16. },
  17. "include": [
  18. "./Source/**/*.js",
  19. "./Build/**/*.ts",
  20. "./Source/**/*.ts"
  21. ],
  22. "exclude": [
  23. "node_modules",
  24. "public"
  25. ]
  26. }