mirror of
https://github.com/apache/superset.git
synced 2026-04-16 14:45:21 +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
388 B
JSON
20 lines
388 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": ["esnext"],
|
|
"moduleResolution": "node",
|
|
"outDir": "./lib",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true
|
|
},
|
|
"include": [
|
|
"./src",
|
|
"./node_modules/@actions"
|
|
],
|
|
"exclude": ["**/*.test.ts", "__tests__"]
|
|
}
|