mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
22 lines
384 B
JSON
22 lines
384 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"target": "es6",
|
||
|
"strict": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"experimentalDecorators": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowJs": true, // for some external modules
|
||
|
"paths": {
|
||
|
"@/*": ["js/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"js/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"js/__tests__/**/*"
|
||
|
]
|
||
|
}
|