This commit is contained in:
el 2025-04-02 00:10:02 +02:00
commit 73ea49c3fe
16 changed files with 2746 additions and 0 deletions

54
README.md Normal file
View file

@ -0,0 +1,54 @@
# OrbitDocs
Un clone moderne de Notion, construit avec Next.js, Node.js et TypeScript.
## Structure du Projet
```
orbitedocs/
├── frontend/ # Application Next.js
├── backend/ # API Node.js
└── shared/ # Code partagé
```
## Prérequis
- Node.js (v18 ou supérieur)
- PostgreSQL
- npm ou yarn
## Installation
### Frontend
```bash
cd frontend
npm install
npm run dev
```
### Backend
```bash
cd backend
npm install
npm run dev
```
## Configuration
1. Copiez le fichier `.env.example` vers `.env` dans le dossier backend
2. Configurez vos variables d'environnement
3. Initialisez la base de données avec Prisma
## Développement
- Frontend: http://localhost:3000
- Backend: http://localhost:3001
## Technologies Utilisées
- Frontend: Next.js, TypeScript, TailwindCSS
- Backend: Node.js, Express, TypeScript
- Base de données: PostgreSQL
- ORM: Prisma

3
backend/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
node_modules
# Keep environment variables out of version control
.env

1850
backend/package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

32
backend/package.json Normal file
View file

@ -0,0 +1,32 @@
{
"name": "backend",
"version": "1.0.0",
"description": "Backend pour OrbitDocs - Clone de Notion",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@prisma/client": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"prisma": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}

View file

@ -0,0 +1,53 @@
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"email" TEXT NOT NULL,
"name" TEXT,
"password" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Page" (
"id" TEXT NOT NULL,
"title" TEXT NOT NULL,
"content" TEXT,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"userId" TEXT NOT NULL,
"parentId" TEXT,
CONSTRAINT "Page_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Block" (
"id" TEXT NOT NULL,
"type" TEXT NOT NULL,
"content" TEXT NOT NULL,
"order" INTEGER NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL,
"pageId" TEXT NOT NULL,
"userId" TEXT NOT NULL,
CONSTRAINT "Block_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
-- AddForeignKey
ALTER TABLE "Page" ADD CONSTRAINT "Page_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Page" ADD CONSTRAINT "Page_parentId_fkey" FOREIGN KEY ("parentId") REFERENCES "Page"("id") ON DELETE SET NULL ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Block" ADD CONSTRAINT "Block_pageId_fkey" FOREIGN KEY ("pageId") REFERENCES "Page"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Block" ADD CONSTRAINT "Block_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;

View file

@ -0,0 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (i.e. Git)
provider = "postgresql"

View file

@ -0,0 +1,52 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @default(uuid())
email String @unique
name String?
password String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
pages Page[]
blocks Block[]
}
model Page {
id String @id @default(uuid())
title String
content String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
userId String
user User @relation(fields: [userId], references: [id])
parentId String?
parent Page? @relation("PageToPage", fields: [parentId], references: [id])
children Page[] @relation("PageToPage")
blocks Block[]
}
model Block {
id String @id @default(uuid())
type String // text, heading, list, image, etc.
content String
order Int
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
pageId String
page Page @relation(fields: [pageId], references: [id])
userId String
user User @relation(fields: [userId], references: [id])
}

View file

@ -0,0 +1,135 @@
import { Request, Response } from 'express';
import { prisma } from '../lib/prisma';
export const pageController = {
// Créer une nouvelle page
async create(req: Request, res: Response) {
try {
const { title, parentId, userId } = req.body;
const page = await prisma.page.create({
data: {
title,
parentId,
userId,
},
include: {
blocks: true,
},
});
return res.status(201).json(page);
} catch (error) {
return res.status(500).json({ error: 'Erreur lors de la création de la page' });
}
},
// Obtenir une page par son ID avec ses blocs
async getById(req: Request, res: Response) {
try {
const { id } = req.params;
const page = await prisma.page.findUnique({
where: { id },
include: {
blocks: {
orderBy: {
order: 'asc',
},
},
},
});
if (!page) {
return res.status(404).json({ error: 'Page non trouvée' });
}
return res.json(page);
} catch (error) {
return res.status(500).json({ error: 'Erreur lors de la récupération de la page' });
}
},
// Mettre à jour une page
async update(req: Request, res: Response) {
try {
const { id } = req.params;
const { title, blocks } = req.body;
// Supprimer tous les blocs existants
await prisma.block.deleteMany({
where: { pageId: id },
});
// Créer les nouveaux blocs
const newBlocks = await Promise.all(
blocks.map((block: any) =>
prisma.block.create({
data: {
type: block.type,
content: block.content,
order: block.order,
pageId: id,
},
})
)
);
// Mettre à jour la page
const page = await prisma.page.update({
where: { id },
data: {
title,
},
include: {
blocks: {
orderBy: {
order: 'asc',
},
},
},
});
return res.json(page);
} catch (error) {
console.error('Erreur lors de la mise à jour:', error);
return res.status(500).json({ error: 'Erreur lors de la mise à jour de la page' });
}
},
// Supprimer une page
async delete(req: Request, res: Response) {
try {
const { id } = req.params;
await prisma.page.delete({
where: { id },
});
return res.status(204).send();
} catch (error) {
return res.status(500).json({ error: 'Erreur lors de la suppression de la page' });
}
},
// Récupérer toutes les pages
async getAll(req: Request, res: Response) {
try {
const pages = await prisma.page.findMany({
include: {
blocks: {
orderBy: {
order: 'asc',
},
},
},
orderBy: {
updatedAt: 'desc',
},
});
return res.json(pages);
} catch (error) {
console.error('Erreur lors de la récupération des pages:', error);
return res.status(500).json({ error: 'Erreur lors de la récupération des pages' });
}
},
};

View file

@ -0,0 +1,64 @@
import { Request, Response } from 'express';
import { prisma } from '../lib/prisma';
import bcrypt from 'bcryptjs';
export const userController = {
// Créer un nouvel utilisateur
async create(req: Request, res: Response) {
try {
const { email, password, name } = req.body;
// Vérifier si l'utilisateur existe déjà
const existingUser = await prisma.user.findUnique({
where: { email },
});
if (existingUser) {
return res.status(400).json({ error: 'Cet email est déjà utilisé' });
}
// Hasher le mot de passe
const hashedPassword = await bcrypt.hash(password, 10);
// Créer l'utilisateur
const user = await prisma.user.create({
data: {
email,
password: hashedPassword,
name,
},
});
// Ne pas renvoyer le mot de passe
const { password: _, ...userWithoutPassword } = user;
return res.status(201).json(userWithoutPassword);
} catch (error) {
return res.status(500).json({ error: 'Erreur lors de la création de l\'utilisateur' });
}
},
// Obtenir un utilisateur par son ID
async getById(req: Request, res: Response) {
try {
const { id } = req.params;
const user = await prisma.user.findUnique({
where: { id },
select: {
id: true,
email: true,
name: true,
createdAt: true,
},
});
if (!user) {
return res.status(404).json({ error: 'Utilisateur non trouvé' });
}
return res.json(user);
} catch (error) {
return res.status(500).json({ error: 'Erreur lors de la récupération de l\'utilisateur' });
}
},
};

46
backend/src/index.ts Normal file
View file

@ -0,0 +1,46 @@
import express from 'express';
import cors from 'cors';
import dotenv from 'dotenv';
import { PrismaClient } from '@prisma/client';
import userRoutes from './routes/userRoutes';
import pageRoutes from './routes/pageRoutes';
import blockRoutes from './routes/blockRoutes';
// Chargement des variables d'environnement
dotenv.config();
const app = express();
const prisma = new PrismaClient();
const port = process.env.PORT || 3001;
// Configuration CORS
app.use(cors({
origin: 'http://localhost:3000',
credentials: true,
methods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
allowedHeaders: ['Content-Type', 'Authorization']
}));
// Middleware
app.use(express.json());
// Routes
app.use('/api/users', userRoutes);
app.use('/api/pages', pageRoutes);
app.use('/api/blocks', blockRoutes);
// Route de test
app.get('/', (req, res) => {
res.json({ message: 'Bienvenue sur l\'API OrbitDocs' });
});
// Gestion des erreurs
app.use((err: Error, req: express.Request, res: express.Response, next: express.NextFunction) => {
console.error(err.stack);
res.status(500).json({ message: 'Une erreur est survenue sur le serveur' });
});
// Démarrage du serveur
app.listen(port, () => {
console.log(`Serveur démarré sur le port ${port}`);
});

View file

@ -0,0 +1,9 @@
import { PrismaClient } from '@prisma/client';
const globalForPrisma = globalThis as unknown as {
prisma: PrismaClient | undefined;
};
export const prisma = globalForPrisma.prisma ?? new PrismaClient();
if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma;

View file

@ -0,0 +1,84 @@
import express from 'express';
import { PrismaClient } from '@prisma/client';
const router = express.Router();
const prisma = new PrismaClient();
// Créer un nouveau bloc
router.post('/', async (req, res) => {
try {
const { type, content, pageId, userId, order } = req.body;
const block = await prisma.block.create({
data: {
type,
content,
pageId,
userId,
order
}
});
res.status(201).json(block);
} catch (error) {
console.error('Erreur lors de la création du bloc:', error);
res.status(500).json({ message: 'Erreur lors de la création du bloc' });
}
});
// Mettre à jour un bloc
router.put('/:id', async (req, res) => {
try {
const { id } = req.params;
const { content, type, order } = req.body;
const block = await prisma.block.update({
where: { id },
data: {
content,
type,
order
}
});
res.json(block);
} catch (error) {
console.error('Erreur lors de la mise à jour du bloc:', error);
res.status(500).json({ message: 'Erreur lors de la mise à jour du bloc' });
}
});
// Supprimer un bloc
router.delete('/:id', async (req, res) => {
try {
const { id } = req.params;
await prisma.block.delete({
where: { id }
});
res.status(204).send();
} catch (error) {
console.error('Erreur lors de la suppression du bloc:', error);
res.status(500).json({ message: 'Erreur lors de la suppression du bloc' });
}
});
// Obtenir tous les blocs d'une page
router.get('/page/:pageId', async (req, res) => {
try {
const { pageId } = req.params;
const blocks = await prisma.block.findMany({
where: { pageId },
orderBy: { order: 'asc' }
});
res.json(blocks);
} catch (error) {
console.error('Erreur lors de la récupération des blocs:', error);
res.status(500).json({ message: 'Erreur lors de la récupération des blocs' });
}
});
export default router;

View file

@ -0,0 +1,123 @@
import express from 'express';
import { PrismaClient } from '@prisma/client';
const router = express.Router();
const prisma = new PrismaClient();
// Créer une nouvelle page
router.post('/', async (req, res) => {
try {
const { title, content, userId, parentId } = req.body;
const page = await prisma.page.create({
data: {
title,
content,
userId,
parentId
},
include: {
user: {
select: {
id: true,
name: true
}
}
}
});
res.status(201).json(page);
} catch (error) {
res.status(500).json({ message: 'Erreur lors de la création de la page' });
}
});
// Obtenir toutes les pages d'un utilisateur
router.get('/user/:userId', async (req, res) => {
try {
const { userId } = req.params;
const pages = await prisma.page.findMany({
where: {
userId
},
include: {
user: {
select: {
id: true,
name: true
}
}
}
});
res.json(pages);
} catch (error) {
res.status(500).json({ message: 'Erreur lors de la récupération des pages' });
}
});
// Obtenir une page spécifique
router.get('/:id', async (req, res) => {
try {
const { id } = req.params;
const page = await prisma.page.findUnique({
where: { id },
include: {
user: {
select: {
id: true,
name: true
}
},
blocks: true
}
});
if (!page) {
return res.status(404).json({ message: 'Page non trouvée' });
}
res.json(page);
} catch (error) {
res.status(500).json({ message: 'Erreur lors de la récupération de la page' });
}
});
// Mettre à jour une page
router.put('/:id', async (req, res) => {
try {
const { id } = req.params;
const { title, content } = req.body;
const page = await prisma.page.update({
where: { id },
data: {
title,
content
}
});
res.json(page);
} catch (error) {
res.status(500).json({ message: 'Erreur lors de la mise à jour de la page' });
}
});
// Supprimer une page
router.delete('/:id', async (req, res) => {
try {
const { id } = req.params;
await prisma.page.delete({
where: { id }
});
res.status(204).send();
} catch (error) {
res.status(500).json({ message: 'Erreur lors de la suppression de la page' });
}
});
export default router;

View file

@ -0,0 +1,124 @@
import express from 'express';
import { PrismaClient } from '@prisma/client';
import bcrypt from 'bcryptjs';
const router = express.Router();
const prisma = new PrismaClient();
// Supprimer un utilisateur (route de développement)
router.delete('/:email', async (req, res) => {
try {
const { email } = req.params;
await prisma.user.delete({
where: { email }
});
res.status(204).send();
} catch (error) {
console.error('Erreur lors de la suppression:', error);
res.status(500).json({ message: 'Erreur lors de la suppression' });
}
});
// Inscription
router.post('/register', async (req, res) => {
try {
const { email, password, name } = req.body;
// Vérification si l'utilisateur existe déjà
const existingUser = await prisma.user.findUnique({
where: { email }
});
if (existingUser) {
return res.status(400).json({ message: 'Cet email est déjà utilisé' });
}
// Hashage du mot de passe
const hashedPassword = await bcrypt.hash(password, 10);
// Création de l'utilisateur
const user = await prisma.user.create({
data: {
email,
password: hashedPassword,
name
}
});
res.status(201).json({
id: user.id,
email: user.email,
name: user.name
});
} catch (error) {
console.error('Erreur lors de l\'inscription:', error);
res.status(500).json({ message: 'Erreur lors de l\'inscription' });
}
});
// Connexion
router.post('/login', async (req, res) => {
try {
const { email, password } = req.body;
console.log('Tentative de connexion pour:', email);
// Recherche de l'utilisateur
const user = await prisma.user.findUnique({
where: { email }
});
if (!user) {
console.log('Utilisateur non trouvé');
return res.status(400).json({ message: 'Email ou mot de passe incorrect' });
}
console.log('Utilisateur trouvé, vérification du mot de passe');
// Vérification du mot de passe
const validPassword = await bcrypt.compare(password, user.password);
console.log('Mot de passe valide:', validPassword);
if (!validPassword) {
return res.status(400).json({ message: 'Email ou mot de passe incorrect' });
}
res.json({
id: user.id,
email: user.email,
name: user.name
});
} catch (error) {
console.error('Erreur lors de la connexion:', error);
res.status(500).json({ message: 'Erreur lors de la connexion' });
}
});
// Vérifier l'état de l'authentification
router.get('/me', async (req, res) => {
try {
const { email } = req.query;
if (!email) {
return res.status(400).json({ message: 'Email requis' });
}
const user = await prisma.user.findUnique({
where: { email: email as string }
});
if (!user) {
return res.status(404).json({ message: 'Utilisateur non trouvé' });
}
res.json({
id: user.id,
email: user.email,
name: user.name
});
} catch (error) {
console.error('Erreur lors de la vérification de l\'authentification:', error);
res.status(500).json({ message: 'Erreur lors de la vérification de l\'authentification' });
}
});
export default router;

113
backend/tsconfig.json Normal file
View file

@ -0,0 +1,113 @@
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
/* Projects */
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
/* Language and Environment */
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
// "jsx": "preserve", /* Specify what JSX code is generated. */
// "libReplacement": true, /* Enable lib replacement. */
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
/* Modules */
"module": "commonjs", /* Specify what module code is generated. */
// "rootDir": "./", /* Specify the root folder within your source files. */
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
// "rewriteRelativeImportExtensions": true, /* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files. */
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
// "noUncheckedSideEffectImports": true, /* Check side effect imports. */
// "resolveJsonModule": true, /* Enable importing .json files. */
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
/* JavaScript Support */
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
/* Emit */
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
// "outDir": "./", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
// "newLine": "crlf", /* Set the newline character for emitting files. */
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
/* Interop Constraints */
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
// "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */
// "erasableSyntaxOnly": true, /* Do not allow runtime constructs that are not part of ECMAScript. */
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
"strict": true, /* Enable all strict type-checking options. */
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
// "strictBuiltinIteratorReturn": true, /* Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'. */
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}

1
frontend Submodule

@ -0,0 +1 @@
Subproject commit 5d0f97db43e45973a6e4db30637ab2850a03c36b