https://github.com/sagemathinc/cocalc
Raw File
Tip revision: a750ac192f436e29efd0bfdd49bc2c27e7ccc919 authored by William A. Stein on 15 December 2019, 05:43:56 UTC
make "open in cocalc" at least make an anonymous user so it works at all, sort of. We will still obviously need to copy it over, etc. to do this right...
Tip revision: a750ac1
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "target": "es5",
    "sourceMap": true,
    "lib": ["es5", "es6", "es2017", "dom"],
    "strictNullChecks": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "downlevelIteration": true,
    "baseUrl": ".",
    "skipLibCheck": true
  },
  "exclude": [
    "./data",
    "node_modules",
    "smc-project",
    "smc-hub",
    "smc-util-node",
    "smc-webapp/jupyter/project-actions.ts",
    "smc-webapp/jupyter/test/",
    "smc-webapp/test-mocha",
    "smc-webapp/frame-editors/generic/mocha-tests/",
    "./test"
  ]
}
back to top