mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-26 13:02:50 +00:00
Refactor: move some of async API requests into thunk actions Enhancement: user can now select and operate single folder in mobile view
34 lines
722 B
JSON
34 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"target": "ES2017",
|
|
"jsx": "react",
|
|
"removeComments": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": false,
|
|
"strictBindCallApply": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "node",
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
} |