mirror of
https://github.com/github/codeql.git
synced 2026-01-07 11:40:27 +01:00
25 lines
523 B
JSON
25 lines
523 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "NodeNext",
|
|
"baseUrl": "./",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"newLine": "lf"
|
|
},
|
|
"exclude": [
|
|
"./dist",
|
|
"./node_modules",
|
|
"./__tests__",
|
|
"./coverage"
|
|
]
|
|
}
|