mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
// @noEmit: true
|
|
// @noTypesAndSymbols: true
|
|
// @module: node16
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @jsx: preserve
|
|
|
|
// @Filename: /module.mts
|
|
export {};
|
|
|
|
// @Filename: /tsExtension.ts
|
|
import {} from "./module.mjs";
|
|
|
|
// @Filename: /jsExtension.js
|
|
import {} from "./module.mjs";
|
|
|
|
// @Filename: /ctsExtension.cts
|
|
import {} from "./module.mjs";
|
|
|
|
// @Filename: /tsxExtension.tsx
|
|
import {} from "./module.mjs";
|