mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
c290864ccd
Co-authored-by: ts-migrate <>
29 lines
822 B
JSON
29 lines
822 B
JSON
{
|
|
"compilerOptions": {
|
|
// Target latest version of ECMAScript.
|
|
"target": "es2019",
|
|
// Search under node_modules for non-relative imports.
|
|
"moduleResolution": "node",
|
|
// Process & infer types from .js files.
|
|
"allowJs": true,
|
|
// Don't emit; allow Babel to transform files.
|
|
"noEmit": true,
|
|
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
"strict": true,
|
|
// Import non-ES modules as default imports.
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./app/*"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["app/**/*"],
|
|
"exclude": ["dist"]
|
|
}
|