7f78545a02
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
18 lines
343 B
JSON
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"
|
|
]
|
|
} |