mirror of
https://github.com/apache/superset.git
synced 2026-04-24 02:25:13 +00:00
* feat: embedded sdk
* correct values
* better version
* readme stuff
* release script
* doc
* oops
* better package description
* license
* that was invalid json
* Apply suggestions from code review
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com>
* Update superset-embedded-sdk/README.md
* a github workflow to make sure the build succeeds
* fix github workflows
* writing
* try a different trigger
* no point in a single unit matrix
* Revert "no point in a single unit matrix"
This reverts commit 90f78bfc98.
* workflow changes
* fix some scripts
* pull request types
* slight rename
* test list
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com>
28 lines
374 B
JSON
28 lines
374 B
JSON
{
|
|
"compilerOptions": {
|
|
// syntax rules
|
|
"strict": true,
|
|
|
|
// environment
|
|
"target": "es6",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "esnext",
|
|
|
|
// output
|
|
"outDir": "./dist",
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true
|
|
},
|
|
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
|
|
"exclude": [
|
|
"tests",
|
|
"dist",
|
|
"lib",
|
|
"node_modules"
|
|
]
|
|
}
|