-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.base.json
37 lines (37 loc) · 1.45 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@collection": ["mfes/editors/src/components/QuestionSetEditor.tsx"],
"@login": ["mfes/authentication/src/pages/login.tsx"],
"@logout": ["mfes/authentication/src/pages/logout.tsx"],
"@mfe-next": ["mfes/mfe-next/src/app/page.tsx"],
"@mfe-next-2": ["mfes/mfe-next-2/src/app/page.tsx"],
"@mfe-next-page-1": ["mfes/mfe-next-page-1/src/pages/_app.tsx"],
"@mfe-next-page-2": ["mfes/mfe-next-page-2/src/pages/_app.tsx"],
"@players": ["mfes/players/src/pages/play.tsx"],
"@questionSet": ["mfes/editors/src/components/CollectionEditor.tsx"],
"@registration": ["mfes/registration/src/app/page.tsx"],
"@scp-teacher": ["mfes/scp-teacher/src/pages/index.tsx"],
"@shared-lib": ["libs/shared-lib/src/index.ts"],
"@shikshav2.0/shared": ["libs/shared/src/index.ts"],
"@test-next-route": ["mfes/test-next-route/src/pages/index.tsx"],
"@test-react-vite": ["mfes/mfes/test-react-vite"],
"@youthNet": ["mfes/youthNet/src/pages/index.tsx"]
}
},
"exclude": ["node_modules", "tmp"]
}