mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
* adds dashboard listview component * use new api * use json over rison * lint * adds seperate dashboard list view * edit and delete actions * fix lint ignore * fix common_bootstrap_payload is now a function * fix license * fix pylint * isort * fix tests * lint * lint ts * fix js tests * fix double import from bad rebase * fix indent error * lookup permissions * generic permission lookup * get tslint to pass * adds js specs * lint * fix rebase * lint * lint again * fix type errors preventing build * adds more specs * fix tslint error * fix null check * remove unecessary code * use translations provided by api * more translations * linting * fix spec * i18n * fix register order
25 lines
622 B
JSON
25 lines
622 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom", "es2018.promise"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"importHelpers": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./src/**/*", "./spec/**/*"]
|
|
}
|