model-registry/tsconfig.json

29 lines
471 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"module": "CommonJS",
"target": "ES6",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@common/*": ["./common/*"],
"@helpers/*": ["./helpers/*"],
},
"types": [
"node"
]
},
"exclude": [
"node_modules",
"dist"
]
}