orchard/tsconfig.json
2022-01-26 20:48:05 +00:00

23 lines
No EOL
455 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/**/*"
]
}