mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
21 lines
489 B
JSON
21 lines
489 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/*"]
|
|
},
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*", "test/declarations.d.ts"]
|
|
}
|