parisma 2bfb85bdbf feat: 新增管理端demo代码
feat: 补充遗漏的文件

fix: 移除license
2022-03-14 18:06:15 +08:00

36 lines
736 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "./dist",
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"paths": {
"@src/*": [
"src/*"
],
"@tests/*": [
"tests/*"
]
},
"noEmitOnError": true
},
"includes": ["src/**/*.ts"],
"exclude": ["node_modules","tests","coverage"],
}