## Current Behavior <!-- This is the behavior we have today --> Nothing there. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Adds a new [/java](https://nx-dev-git-nxdev-gradle-landing-page-nrwl.vercel.app/java) landing page ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes # --------- Co-authored-by: Mike Hartington <mikehartington@gmail.com> Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>
25 lines
557 B
JSON
25 lines
557 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist/out-tsc",
|
|
"types": [
|
|
"node",
|
|
"@nx/react/typings/cssmodule.d.ts",
|
|
"@nx/react/typings/image.d.ts"
|
|
],
|
|
"lib": ["DOM", "es2019"]
|
|
},
|
|
"exclude": [
|
|
"jest.config.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.tsx",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.test.js",
|
|
"src/**/*.spec.jsx",
|
|
"src/**/*.test.jsx"
|
|
],
|
|
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
|
|
}
|