Files
deepdrft/DeepDrftWeb/tsconfig.json
T
daniel-c-harvey 7f78545a02 *Audio Playback*
Content API:
 - Enabling CORS for access from Blazor app
Web Server:
 - Content API URL environment config
 - Web Audio API JS Interop layer in TypeScript
 - HttpClient configs
Web Client:
 - Audio Tack player controls
 - Audio Player example page
 - Audio Interop Service Layer
 - Named HttpClients
2025-09-05 10:48:07 -04:00

18 lines
343 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "ES6", // or "ESNext"
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"outDir": "wwwroot/js"
},
"include": [
"Interop/**/*"
],
"exclude": [
"node_modules"
]
}