mirror of
https://github.com/github/codeql-action.git
synced 2026-04-26 16:58:47 +00:00
bad0a744dd
While we want the CodeQL Action to work with third-party language support, having a list of all built-in languages can help us create better type-level checks to ensure that we don't miss things that we want to customize for each of our built-in languages.
12 lines
220 B
JSON
12 lines
220 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"rootDir": "../../..",
|
|
"sourceMap": false,
|
|
"noEmit": true,
|
|
},
|
|
"include": ["./*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|