12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "target": "es2015",
- "lib": ["dom", "dom.iterable", "esnext"],
- "module": "commonjs",
- "jsx": "react",
- "allowJs": true,
- "skipLibCheck": true,
- "declaration": true,
- "downlevelIteration": true,
- "sourceMap": true,
- "resolveJsonModule": true,
- /* Strict Type-Checking Options */
- "strict": true,
- /* Additional Checks */
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true,
- /* Module Resolution Options */
- "moduleResolution": "node",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- /* Uncomment to use local jupyterlab instance */
- // "paths": { "@jupyterlab/*": ["../jupyterlab/packages/*"] },
- /* Logging */
- "preserveWatchOutput": true
- }
- }
|