Zeichen's app for both server and client.
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.
 
 
 

36 lines
696 B

  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "module": "esnext",
  15. "moduleResolution": "node",
  16. "resolveJsonModule": true,
  17. "isolatedModules": true,
  18. "noEmit": true,
  19. "jsx": "preserve",
  20. "declaration": true,
  21. "declarationDir": "./dist",
  22. "sourceMap": true,
  23. "strict": false
  24. },
  25. "exclude": [
  26. "node_modules",
  27. "**/*.test.ts",
  28. "**/*.test.tsx"
  29. ],
  30. "include": [
  31. "next-env.d.ts",
  32. "**/*.ts",
  33. "**/*.tsx"
  34. ]
  35. }