mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com> Co-authored-by: Diego Pucci <diegopucci.me@gmail.com> Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me> Co-authored-by: Geido <60598000+geido@users.noreply.github.com> Co-authored-by: Alexandru Soare <37236580+alexandrusoare@users.noreply.github.com> Co-authored-by: Damian Pendrak <dpendrak@gmail.com> Co-authored-by: Pius Iniobong <67148161+payose@users.noreply.github.com> Co-authored-by: Enzo Martellucci <enzomartellucci@gmail.com> Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com>
44 lines
991 B
JSON
44 lines
991 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Type Checking */
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
|
|
"types": ["jest", "node", "@testing-library/jest-dom"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
|
|
/* Emit */
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"importHelpers": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
|
|
/* JavaScript Support */
|
|
"allowJs": true,
|
|
|
|
/* Interop Constraints */
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
/* Language and Environment */
|
|
"target": "esnext",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
/* Projects */
|
|
"composite": true,
|
|
|
|
/* Completeness */
|
|
"skipLibCheck": true
|
|
}
|
|
}
|