tsconfig.build.next.config.json 386 B

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