mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 03:27:01 +03:00
23 lines
443 B
JSON
23 lines
443 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [ "src/*"],
|
|
"@node_modules/*" : ["./node_modules/*"]},
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"module": "es6",
|
|
"target": "es2018",
|
|
"composite": true,
|
|
// "jsx": "react",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports" : true,
|
|
"esModuleInterop" : true
|
|
|
|
},
|
|
"exclude": [
|
|
"./node_modules"
|
|
]
|
|
}
|