tsconfig.json 471 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "lib": ["ESNext"],
  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. "skipLibCheck": true
  15. },
  16. "include": [
  17. "./Source/**/*.js",
  18. "./Build/**/*.ts",
  19. "Source/**/*.ts"
  20. ]
  21. }