-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2294bc7
commit 970bbbe
Showing
14 changed files
with
58 additions
and
1,961 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...ewrite-module-specifiers-to-full-paths/test/transformer-inputs/project-1/src/globals.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module '*.png' {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...te-module-specifiers-to-full-paths/test/transformer-inputs/project-1/src/lib/some-js.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const someConstant: string; |
1 change: 1 addition & 0 deletions
1
...rite-module-specifiers-to-full-paths/test/transformer-inputs/project-1/src/lib/some-js.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports.someConstant = ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,6 @@ | |
}, | ||
"types": ["node"] | ||
}, | ||
"include": ["src/**/*"] | ||
"include": ["src/**/*"], | ||
"exclude": ["src/lib/**"] | ||
} |
1 change: 1 addition & 0 deletions
1
...od-rewrite-module-specifiers-to-full-paths/test/transformer-inputs/project-2/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import defaultExport from '#pkg/some-module'; |
1 change: 1 addition & 0 deletions
1
...rite-module-specifiers-to-full-paths/test/transformer-inputs/project-2/src/some-module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export function noop() {} |
16 changes: 16 additions & 0 deletions
16
...d-rewrite-module-specifiers-to-full-paths/test/transformer-inputs/project-2/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
/* Language and Environment */ | ||
"target": "ES2018", | ||
|
||
/* Modules */ | ||
"baseUrl": "./src", | ||
"module": "commonjs", | ||
"paths": { | ||
"#pkg/*": ["./*"] | ||
}, | ||
"types": ["node"] | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["src/lib/**"] | ||
} |
1 change: 1 addition & 0 deletions
1
...write-module-specifiers-to-full-paths/test/transformer-outputs/project-1/src/globals.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module '*.png' {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...d-rewrite-module-specifiers-to-full-paths/test/transformer-outputs/project-2/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import defaultExport from '#pkg/some-module.js'; |
1 change: 1 addition & 0 deletions
1
...ite-module-specifiers-to-full-paths/test/transformer-outputs/project-2/src/some-module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export function noop() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters