tsconfig.build.next.config.json 363 B

123456789101112131415161718
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "noResolve": false,
  5. "preserveConstEnums": true,
  6. "sourceMap": false,
  7. "noEmit": false,
  8. "paths": {
  9. "~/*": ["./src/*"],
  10. "^/*": ["./*"]
  11. }
  12. },
  13. "include": [
  14. "src/next-i18next.config.ts",
  15. "src/utils/next.config.utils.ts"
  16. ],
  17. "exclude": ["node_modules"]
  18. }