mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
// @noImplicitReferences: true
|
|
// @traceResolution: true
|
|
// @currentDirectory: /
|
|
|
|
// The primary lookup folder is relative to tsconfig.json, if present
|
|
|
|
// @filename: /node_modules/@types/alpha/index.d.ts
|
|
declare var alpha: { a: string };
|
|
|
|
// @filename: /src/foo.ts
|
|
/// <reference types="alpha" />
|
|
var x: string = alpha.a;
|
|
|
|
// @filename: /tsconfig.json
|
|
{
|
|
}
|