mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
24 lines
455 B
JSON
24 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es2021",
|
|
"lib": ["es2021", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"@/*": ["js/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"js/**/*"
|
|
],
|
|
"exclude": [
|
|
"js/__tests__/**/*"
|
|
]
|
|
}
|