orchard/tsconfig.json
2022-03-01 19:12:15 +07: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/**/*",
]
}