🚚(frontend) rename folder app to apps

The folder app will be used for more than one app, so it was
renamed to apps.
This commit is contained in:
Anthony LC
2024-01-11 12:13:11 +01:00
committed by Anthony LC
parent ba21784eab
commit fc7747dddf
33 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}