orchard/tsconfig.json
Core 4b0323e267
Revert "Merge branch 'main' into develop"
This reverts commit 932ae6c385, reversing
changes made to 150098de59.
2022-03-16 00:04:13 +00:00

24 lines
483 B
JSON

{
"compilerOptions": {
"experimentalDecorators": true,
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"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/**/*",
]
}