mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 19:08:11 +08:00
* disable formatting rules for eslint and add prettier in lint-staged * update npm modules * set plugin-proposal-private-methods to loose * update snapshots due to popover package update * add missing quotes Co-authored-by: bkmartinjr <bruce@chanzuckerberg.com>
36 lines
832 B
JSON
36 lines
832 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": ["__tests__/e2e/__snapshots__/**/*"]
|
|
}
|