mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-20 06:28:25 +03:00
24 lines
437 B
JSON
24 lines
437 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"target": "es6",
|
|
"module": "CommonJS",
|
|
"composite": true,
|
|
// "jsx": "react",
|
|
"allowJs": true,
|
|
// "checkJs": true,
|
|
"allowSyntheticDefaultImports" : true,
|
|
"esModuleInterop" : true
|
|
|
|
},
|
|
"include": [
|
|
"src/**/*" // Adjust the path to include your source files
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|