mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-26 12:22:45 +00:00
* Refact: move explorer reducer * Fix: 添加TS eslint 规则,修复所有报错 * Fix: 修复Ts报错,添加React resolution 版本16.9.35. 添加tsconfig moduleResolution
34 lines
720 B
JSON
34 lines
720 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"target": "ES2017",
|
|
"jsx": "react",
|
|
"removeComments": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "node",
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
} |