We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is my ts config
{ "compileOnSave": true, "noEmit": true, "compilerOptions": { "baseUrl": ".", "paths": { "@app/*": ["src/*"] }, "plugins": [ { "transform": "typescript-transform-paths", "afterDeclarations": true } ], "lib": ["dom", "ES6"], "skipLibCheck": true, "module": "commonjs", "outDir": "dist", "sourceMap": true, "target": "es6", "types": ["jest", "node"], "isolatedModules": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, "noImplicitAny": true, "preserveConstEnums": true, "suppressImplicitAnyIndexErrors": true, "resolveJsonModule": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "incremental": true, "allowJs": true }, "include": ["src/**/*.ts"] }
im calling it with the following command
"compile": "rm -rf ./dist/* && ttsc -p tsconfig.build.json",
However it just does not rewrite my paths at all.
My JS gets compiled with all the @app/ declarations.
@app/
library versions
"tsconfig-paths": "^3.14.0", "ttypescript": "^1.5.13", "typescript": "^4.6.2"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is my ts config
im calling it with the following command
However it just does not rewrite my paths at all.
My JS gets compiled with all the
@app/
declarations.library versions
The text was updated successfully, but these errors were encountered: