beelink/tsconfig.json

46 lines
804 B
JSON
Raw Normal View History

2020-09-24 10:26:22 +08:00
{
2020-11-18 10:10:48 +08:00
"defaultSeverity": "error",
2020-09-24 10:26:22 +08:00
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
2020-09-24 15:33:12 +08:00
"noImplicitThis": true,
2020-09-24 10:26:22 +08:00
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
2020-11-18 10:10:48 +08:00
"node_modules",
"tslint:recommended"
],
"rules": {
"no-var-requires": false
}
2020-09-24 10:26:22 +08:00
}