tsconfig.build.next.config.json 333 B

1234567891011121314151617
  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. "files": [
  14. "config/next-i18next.config.ts",
  15. "src/utils/next.config.utils.ts"
  16. ]
  17. }