-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
42 lines (42 loc) · 1.46 KB
/
tsconfig.base.json
File metadata and controls
42 lines (42 loc) · 1.46 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
36
37
38
39
40
41
42
{
"compilerOptions": {
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"exactOptionalPropertyTypes": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2024", "dom"],
"module": "nodenext",
"moduleResolution": "nodenext",
// Ensure no CJS fallback
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"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/media-core": ["./packages/media-core/src/index.ts"],
"@cxing/media-parser-cdg": ["./packages/media-parser-cdg/src/index.ts"],
"@cxing/media-loader": ["./packages/media-loader/src/index.ts"],
"@cxing/media-player": ["./packages/media-player/src/index.ts"],
"@cxing/media-playback-controls": [
"./packages/media-playback-controls/src/index.ts"
]
}
}
}