Skip to content

Commit 33210cb

Browse files
committed
types
1 parent c0265bf commit 33210cb

File tree

6 files changed

+31
-42
lines changed

6 files changed

+31
-42
lines changed

apps/nextjs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"lint": "next lint",
1111
"test": "vitest run --coverage",
1212
"coverage": "vitest run --coverage",
13-
"typecheck": "tsc --noEmit && vitest run --typecheck",
13+
"typecheck": "tsc --noEmit",
14+
"tests-type": "vitest run --typecheck",
1415
"format": "prettier --write ."
1516
},
1617
"dependencies": {

apps/nextjs/tsconfig.app.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

apps/nextjs/tsconfig.base.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

apps/nextjs/tsconfig.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"compilerOptions": {
3+
"target": "ES2020",
4+
"lib": ["dom", "dom.iterable", "esnext"],
5+
"allowJs": true,
6+
"allowImportingTsExtensions": true,
7+
"skipLibCheck": true,
8+
"strict": true,
9+
"noEmit": true,
10+
"esModuleInterop": true,
11+
"module": "esnext",
12+
"moduleResolution": "bundler",
13+
"resolveJsonModule": true,
14+
"isolatedModules": true,
15+
"jsx": "preserve",
16+
"incremental": true,
17+
"plugins": [
18+
{
19+
"name": "next"
20+
}
21+
],
22+
"paths": {
23+
"@/*": ["./*"]
24+
},
25+
"typeRoots": ["./node_modules/@types", "./types"]
26+
},
327
"include": [
428
"next-env.d.ts",
529
"**/*.ts",

apps/nextjs/tsconfig.vitest.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

servidor/db/structure.sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2722,7 +2722,10 @@ ALTER SEQUENCE public.cor1440_gen_tipomoneda_id_seq OWNED BY public.cor1440_gen_
27222722
CREATE TABLE public.course_usuario (
27232723
usuario_id integer NOT NULL,
27242724
proyectofinanciero_id integer NOT NULL,
2725-
points integer NOT NULL
2725+
points integer NOT NULL,
2726+
guidespoints numeric,
2727+
amountscholarship numeric,
2728+
percentagecompleted numeric
27262729
);
27272730

27282731

@@ -2735,7 +2738,6 @@ CREATE TABLE public.guide_usuario (
27352738
actividadpf_id integer NOT NULL,
27362739
amountpaid integer NOT NULL,
27372740
profilescore integer NOT NULL,
2738-
amountpending integer NOT NULL,
27392741
points integer NOT NULL
27402742
);
27412743

0 commit comments

Comments
 (0)