Skip to content

Commit

Permalink
Moved tsconfig.json from root folder (primefaces#5337)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Nov 16, 2023
1 parent 2b722df commit 2b246c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tsconfig.json → api-scripts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist"]
"include": ["../next-env.d.ts", "../**/*.ts", "../**/*.tsx"],
"exclude": ["../node_modules", "../dist"]
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"build:api": "npm run apiwebtypes && npm run apidoc",
"build:check": "npm run lint && npm run format:check && npm run type:check && npm run security:check && (NODE_ENV=test npm run test:check)",
"security:check": "npm audit --production --audit-level high",
"format": "prettier --write \"{components,pages,service,api-generator}/**/*.{js,ts,tsx,d.ts}\"",
"format:check": "prettier --check \"{components,pages,service,api-generator}/**/*.{js,ts,tsx,d.ts}\"",
"format": "prettier --write \"{components,pages,service,api-scripts}/**/*.{js,ts,tsx,d.ts}\"",
"format:check": "prettier --check \"{components,pages,service,api-scripts}/**/*.{js,ts,tsx,d.ts}\"",
"lint": "next lint --max-warnings=0 --ignore-path .gitignore .",
"lint:fix": "next lint --fix --ignore-path .gitignore .",
"type:check": "tsc",
"type:check": "tsc -p ./api-scripts/tsconfig.json",
"test": "jest --watch --coverage --silent",
"test:check": "jest --watchAll=false --coverage --silent",
"test:debug": "jest --watch --coverage",
"apidoc": "node ./api-generator/build-apidoc.js",
"apiwebtypes": "node ./api-generator/build-webtypes.js"
"apidoc": "node ./api-scripts/build-apidoc.js",
"apiwebtypes": "node ./api-scripts/build-webtypes.js"
},
"dependencies": {
"@docsearch/react": "3.5.2",
Expand Down

0 comments on commit 2b246c2

Please sign in to comment.