1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-08 07:02:39 +01:00
Whalebird-desktop-client-ma.../tsconfig.json
AkiraFukushima 929f771b7c
Specify skipLibCheck for element-plus
Because element-plus 2.1 has a bug regarding typecheck.
I'm waiting for https://github.com/element-plus/element-plus/issues/7265
2022-05-28 20:50:12 +09:00

34 lines
747 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"lib": [
"dom",
"dom.iterable",
"es6"
],
"sourceMap": true,
"downlevelIteration": true,
"strict": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@*": ["src/renderer*"],
"~*": ["./*"]
}
}
}