Code Monkey home page Code Monkey logo

typescript-baseurl-vs-node-private-imports's Introduction

Typescript BaseUrl vs Node Private imports

We have 3 files:

๐Ÿ‘‰ control.js

basically to show that it actually works. Using the "cumbersome" long file path.

import { one } from "../../src/one.js";

console.log(one);

๐Ÿ‘‰ baseUrl.js

we now use the baseUrl typescript compilerOptions and import with it

import { one } from "one.js";

console.log(one);

๐Ÿ‘‰ importMap.js

we now use a private node import we defined in the package.json

import { one } from "#one";

console.log(one);

We now execute/bundle those files with various tools and see the output.

Results

File TSC TSC@next Node Webpack Rollup
control.js โœ… โœ… โœ… โœ… โœ…
baseUrl.js โœ… โœ… โŒ โŒ โŒ
importMap.js โš ๏ธ [1] โœ… โœ… โœ… โœ… [2]

[1]: typescript < 4.6 will not get the type info from an import map
[2]: Requires the @rollup/plugin-node-resolve plugin

Run it yourself

npm run tsc
npm run tsc:base
npm run tsc:map
npm run node
npm run node:base
npm run node:map
npm run rollup
npm run rollup:base
npm run rollup:map
npm run webpack
npm run webpack:base
npm run webpack:map

typescript-baseurl-vs-node-private-imports's People

Contributors

dakmor avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.