@ts.adligo.org/slink
Version:
This is a simple Type Script Application that will create symbolic links from webpack config files with links created by webpack-link inside of your source folder, which improves speed of changing upstream Javascript or Typescript in a multiple project sy
23 lines • 446 B
JSON
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": [
"ESNext"
],
"target": "ES2024",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"resolveJsonModule": true,
"sourceMap": true
},
"include": [
"src/**/*.mts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}