superset/.github/actions/file-changes-action/tsconfig.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",
"."
]
}