mirror of
https://github.com/apache/superset.git
synced 2026-07-11 17:25:31 +00:00
32 lines
445 B
JSON
32 lines
445 B
JSON
{
|
|
"compilerOptions": {
|
|
// syntax rules
|
|
"strict": true,
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
// environment
|
|
"target": "es6",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "esnext",
|
|
|
|
// output
|
|
"outDir": "./dist",
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
|
|
"types": ["node"]
|
|
},
|
|
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
|
|
"exclude": [
|
|
"src/**/*.test.ts",
|
|
"dist",
|
|
"lib",
|
|
"node_modules"
|
|
]
|
|
}
|