orchard/tsconfig.json
2022-02-01 12:08:52 +00:00

23 lines
458 B
JSON

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