Files
codeql/javascript/ql/test/library-tests/PathResolution/Extended/base/tsconfig.base.json
2025-04-29 13:07:10 +02:00

12 lines
300 B
JSON

{
"compilerOptions": {
// The baseUrl is interpreted relative to this file, not the "root" tsconfig.json file extending it.
"baseUrl": "./../",
"paths": {
"@/*": ["lib/*"],
"@/*.xyz": ["lib/*"],
"@": ["lib/nostar.ts"]
}
}
}