Skip to content

Commit

Permalink
Merge pull request #5 from liip/typescript
Browse files Browse the repository at this point in the history
Add typescript AST support along with Rollup plugin
  • Loading branch information
lgollut committed Aug 15, 2024
2 parents 04038f7 + c26aa06 commit 5fed889
Show file tree
Hide file tree
Showing 47 changed files with 4,871 additions and 2,535 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ jest-results.xml
!.vscode/extensions.json

.env

.nx/cache
.nx/workspace-data
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
**/node_modules/**
**/dist/**

/.nx/cache
/.nx/workspace-data
27 changes: 5 additions & 22 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {}
}
},
"targetDefaults": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/dist"
]
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist"]
},
"typecheck": {
"dependsOn": [
"^build"
]
"dependsOn": ["^build"]
}
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": [
"default"
]
"production": ["default"]
}
}
Loading

0 comments on commit 5fed889

Please sign in to comment.