mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 20:22:12 +08:00
25 lines
460 B
JSON
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/**/*"
|
|
]
|
|
} |