Skip to content
New issue

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

Moved tsconfig.json from root folder #5337

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading