mirror of
https://github.com/koel/koel
synced 2024-11-15 00:47:18 +00:00
22 lines
383 B
JSON
22 lines
383 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es6",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"@/*": ["js/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"js/**/*"
|
|
],
|
|
"exclude": [
|
|
"js/__tests__/**/*"
|
|
]
|
|
}
|