Files
KnowStreaming/kafka-manager-console/tsconfig.json
2020-09-28 15:46:34 +08:00

25 lines
460 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["src/*"],
"@dt/*": ["src/types/@dt/*"],
},
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es7"
],
"module": "commonjs",
"target": "es5",
"allowSyntheticDefaultImports": true,
"jsx": "react"
},
"include": [
"./src/**/*"
]
}