tsconfig.json 575 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "lib": ["ESNext", "ESNext.Iterator"],
  5. "moduleDetection": "force",
  6. "module": "esnext",
  7. "moduleResolution": "bundler",
  8. "allowImportingTsExtensions": true,
  9. "allowJs": true,
  10. "noEmit": true,
  11. "allowSyntheticDefaultImports": 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. }