mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 08:41:40 +03:00
6f29262f90
2nd PR for IDE/Cloud authorization with cognito. This PR introduces boilerplate react app + some amplify code to fetch the access token + username of the currently logged in user, if they are already authenticated. Registration + Login + Set Username + Forgot Password flows are to be added in next PRs to keep the changes reviewable.
28 lines
644 B
JSON
28 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"checkJs": true,
|
|
"noImplicitOverride": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2019",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"files": true
|
|
}
|
|
}
|