orchard/tsconfig.json
Core 27becacbb7
Various updates to backend.
Implementation of MPRIS in TS.
LastFM now interacts with store object passed directly into class.
Experimental decorators enabled and utilised in MPRIS.
2022-01-26 05:13:46 +00:00

19 lines
No EOL
359 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"target": "esnext",
"module": "commonjs",
"noImplicitAny": true,
"strict": true,
"sourceMap": true,
"outDir": "./build",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
},
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
}