The frontend for the project formerly known as signet, now known as beignet.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 758 B

2 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "skipLibCheck": true,
  9. "esModuleInterop": true,
  10. "allowSyntheticDefaultImports": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "useDefineForClassFields": true,
  13. "sourceMap": true,
  14. "baseUrl": ".",
  15. "types": [
  16. "webpack-env",
  17. "mocha",
  18. "chai"
  19. ],
  20. "paths": {
  21. "@/*": [
  22. "src/*"
  23. ]
  24. },
  25. "lib": [
  26. "esnext",
  27. "dom",
  28. "dom.iterable",
  29. "scripthost"
  30. ]
  31. },
  32. "include": [
  33. "src/**/*.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "tests/**/*.ts",
  37. "tests/**/*.tsx"
  38. ],
  39. "exclude": [
  40. "node_modules"
  41. ]
  42. }