-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.18 KB
/
tsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.18 KB
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
{
"compilerOptions": {
"baseUrl": ".",
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"exactOptionalPropertyTypes": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2024", "dom"],
"module": "nodenext",
"moduleResolution": "nodenext",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"target": "es2024",
"customConditions": ["cdgplayer"],
"paths": {
"@cxing/framework-demo-app": ["apps/framework-demo/src/App.tsx"],
"@cxing/framework-demo-styles": ["apps/framework-demo/src/styles.css"],
"@cxing/demo-app-element": ["apps/demo/src/app/app.element.ts"],
"@cxing/logger": ["packages/logger/src/index.ts"],
"@cxing/cdg-core": ["packages/cdg-core/src/index.ts"],
"@cxing/cdg-loader": ["packages/cdg-loader/src/index.ts"],
"@cxing/cdg-player": ["packages/cdg-player/src/index.ts"],
"@cxing/cdg-controls": ["packages/cdg-controls/src/index.ts"]
}
}
}