2018-09-18 10:03:59 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2018-10-11 17:14:55 +08:00
|
|
|
"types": ["node", "jest"],
|
2018-09-18 10:03:59 +08:00
|
|
|
"paths": {
|
2018-10-11 17:14:55 +08:00
|
|
|
"@/*": ["src/*"]
|
2018-09-18 10:03:59 +08:00
|
|
|
},
|
2018-10-11 17:14:55 +08:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
2018-09-18 10:03:59 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"tests/**/*.ts",
|
2018-10-11 17:14:55 +08:00
|
|
|
"tests/**/*.tsx",
|
|
|
|
"src/components/reportTemplate/rescource/hightlight.js"
|
2018-09-18 10:03:59 +08:00
|
|
|
],
|
2018-10-11 17:14:55 +08:00
|
|
|
"exclude": ["node_modules"]
|
2018-09-18 10:03:59 +08:00
|
|
|
}
|