mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +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
25 lines
433 B
JSON
25 lines
433 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDirs": [
|
|
"src",
|
|
"src/tests/mocks/*"
|
|
],
|
|
"sourceMap": true,
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"*": ["node_modules/"],
|
|
"typings/*": ["src/typings/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"."
|
|
]
|
|
}
|