]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/tsconfig.json
add stop-gap to fix compat with CPUs not supporting SSE 4.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / tsconfig.json
1 {
2 "compileOnSave": false,
3 "compilerOptions": {
4 "downlevelIteration": true,
5 "esModuleInterop": true,
6 "importHelpers": true,
7 "outDir": "./dist/out-tsc",
8 "sourceMap": true,
9 "declaration": false,
10 "moduleResolution": "node",
11 "emitDecoratorMetadata": true,
12 "experimentalDecorators": true,
13 "noUnusedLocals": true,
14 "noUnusedParameters": true,
15 "noFallthroughCasesInSwitch": true,
16 "noImplicitThis": true,
17 "noImplicitReturns": true,
18 "noImplicitAny": true,
19 "suppressImplicitAnyIndexErrors": true,
20 "target": "es2015",
21 "module": "es2020",
22 "baseUrl": "./",
23 "resolveJsonModule": true,
24 "paths": {
25 "~/*": ["src/*"]
26 },
27 "typeRoots": [
28 "node_modules/@types"
29 ],
30 "lib": [
31 "es2017",
32 "dom"
33 ],
34 "allowJs": true
35 },
36 "exclude": [
37 "coverage",
38 "dist",
39 "node_modules",
40 "cypress"
41 ]
42 }