mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 02:48:30 +08:00
36 lines
848 B
JSON
36 lines
848 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
// Allow @connect
|
|
"experimentalDecorators": true,
|
|
// Ensure Babel can safely transpile files
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2020"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": [
|
|
"jest",
|
|
"puppeteer",
|
|
"jest-environment-puppeteer",
|
|
"expect-puppeteer"
|
|
],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"configuration/**/*",
|
|
"__tests__/**/*",
|
|
"jest-puppeteer.config.js"
|
|
],
|
|
"exclude": ["node_modules", "__tests__/e2e/__snapshots__/**/*"]
|
|
}
|