mirror of
https://github.com/apache/superset.git
synced 2026-04-07 10:31:50 +00:00
* move assets out, get webpack dev working * update docs to reference superset-frontend * draw the rest of the owl * fix docs * fix webpack script * rats * correct docs * fix tox dox
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/**/*"]
|
|
}
|