frontend/tsconfig.json
HFO4 907f86550d Feat: client side batch download based on StreamSaver
Refactor: move some of async API requests into thunk actions
Enhancement: user can now select and operate single folder in mobile view
2022-04-10 17:49:56 +08:00

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"
]
}