Skip to content

Commit 732ca0c

Browse files
Fix prettier
1 parent b9883db commit 732ca0c

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

examples/react/optimistic-updates-typescript/tsconfig.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"compilerOptions": {
33
"strict": true,
44
"esModuleInterop": true,
5-
"lib": [
6-
"dom",
7-
"es2015"
8-
],
5+
"lib": ["dom", "es2015"],
96
"jsx": "preserve",
107
"target": "es5",
118
"allowJs": true,
@@ -18,10 +15,6 @@
1815
"isolatedModules": true,
1916
"incremental": true
2017
},
21-
"include": [
22-
"src"
23-
],
24-
"exclude": [
25-
"node_modules"
26-
]
18+
"include": ["src"],
19+
"exclude": ["node_modules"]
2720
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
1111
"install:csb": "corepack enable && pnpm install --frozen-lockfile",
1212
"test": "pnpm run test:ci",
13-
"test:pr": "nx affected --targets=test:lib,test:types,test:eslint,test:format,build,test:build --exclude=examples/**",
14-
"test:ci": "nx run-many --targets=test:lib,test:types,test:eslint,test:format,build,test:build --exclude=examples/**",
13+
"test:pr": "nx affected --targets=test:lib,test:types,test:eslint,build,test:build --exclude=examples/**",
14+
"test:ci": "nx run-many --targets=test:lib,test:types,test:eslint,build,test:build --exclude=examples/**",
1515
"test:react:17": "nx affected --target=test:lib",
1616
"test:eslint": "nx affected --target=test:eslint",
1717
"test:format": "pnpm run prettier --check",

0 commit comments

Comments
 (0)