https://github.com/sagemathinc/cocalc
Raw File
Tip revision: a3b7af6c641c5523d558304c47fd9bb5ddf90a38 authored by Harald Schilly on 09 December 2020, 13:34:15 UTC
project/usage: also update if remaining memory changes
Tip revision: a3b7af6
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "target": "es5",
    "sourceMap": true,
    "lib": ["es5", "es6", "es2017", "dom"],
    "strictNullChecks": true,
    "noImplicitThis": 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