mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 13:32:42 +01:00
21 lines
459 B
JSON
21 lines
459 B
JSON
{
|
|
"compilerOptions": {
|
|
"typeRoots": ["src/types", "node_modules/@types"],
|
|
"module": "commonjs",
|
|
"target": "ES6",
|
|
"lib": ["ES2020", "DOM"],
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "ts-dist",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|