mirror of
https://github.com/github/codeql.git
synced 2026-02-12 21:21:16 +01:00
15 lines
442 B
JSON
15 lines
442 B
JSON
{
|
|
"include": ["."],
|
|
"compilerOptions": {
|
|
// Path mappings are resolved relative to baseUrl
|
|
"baseUrl": "./base",
|
|
"paths": {
|
|
"@/*": ["lib/*"],
|
|
"#/*": ["./lib/*"], // relative paths here are also resolved from the base url
|
|
"^lib*": ["./lib*"], // must end with "*" but not necessarily "/*"
|
|
"@/*.xyz": ["lib/*"],
|
|
"@": ["lib/nostar.ts"]
|
|
}
|
|
}
|
|
}
|