mirror of
https://github.com/apache/superset.git
synced 2026-05-11 10:55:43 +00:00
* build: inline cached-dependencies to unblock CI * Run E2E on pull_request on;y * Inline all external actions * Checkout needed for internal actions Also fixes pre-commit * Add missing files
20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"lib": ["ES2019"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"target": "ES2019"
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|