From 86639629ee579d6968cfa363de5c91d492110124 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sat, 16 Jul 2022 23:54:37 +0200 Subject: [PATCH] Moving sources to a src/ folder --- front/{ => src}/pages/_app.tsx | 0 front/{ => src}/pages/index.tsx | 0 front/{ => src}/pages/toto.tsx | 0 front/{ => src}/utils/link.tsx | 0 front/{ => src}/utils/themes/default-theme.ts | 0 front/tsconfig.json | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename front/{ => src}/pages/_app.tsx (100%) rename front/{ => src}/pages/index.tsx (100%) rename front/{ => src}/pages/toto.tsx (100%) rename front/{ => src}/utils/link.tsx (100%) rename front/{ => src}/utils/themes/default-theme.ts (100%) diff --git a/front/pages/_app.tsx b/front/src/pages/_app.tsx similarity index 100% rename from front/pages/_app.tsx rename to front/src/pages/_app.tsx diff --git a/front/pages/index.tsx b/front/src/pages/index.tsx similarity index 100% rename from front/pages/index.tsx rename to front/src/pages/index.tsx diff --git a/front/pages/toto.tsx b/front/src/pages/toto.tsx similarity index 100% rename from front/pages/toto.tsx rename to front/src/pages/toto.tsx diff --git a/front/utils/link.tsx b/front/src/utils/link.tsx similarity index 100% rename from front/utils/link.tsx rename to front/src/utils/link.tsx diff --git a/front/utils/themes/default-theme.ts b/front/src/utils/themes/default-theme.ts similarity index 100% rename from front/utils/themes/default-theme.ts rename to front/src/utils/themes/default-theme.ts diff --git a/front/tsconfig.json b/front/tsconfig.json index fb9a5ead..bbf4c8db 100755 --- a/front/tsconfig.json +++ b/front/tsconfig.json @@ -17,7 +17,7 @@ "incremental": true, "baseUrl": ".", "paths": { - "~/*": ["*"] + "~/*": ["src/*"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],