mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 17:50:07 +08:00
This commit only adds a single package and all of its transitive dependencies. The github-linguist package will be used for counting lines of code as a baseline for databases we are analyzing.
20 lines
432 B
JSON
20 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2018",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"useDefineForClassFields": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"*": ["node_modules/*", "src/types/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|