oxc/crates/oxc_resolver/tests/parcel/nested/tsconfig.json
Boshen 6ab4ce0a6b
feat(resolver): implement tsconfig-paths (#750)
This PR includes 3 core functinalies of tsconfig-paths:

* matching tsconfig.compilerOptions.paths
* use tsconfig.compilerOptions.baseUrl
* extend tsconfig with tsconfig.extends

This PR does not include tsconfig.references
2023-08-17 16:24:46 +08:00

8 lines
100 B
JSON

{
"extends": "..",
"compilerOptions": {
"paths": {
"ts-path": ["test.js"]
}
}
}