orchard/tsconfig.json
2022-01-05 00:22:32 +00:00

18 lines
No EOL
323 B
JSON

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