File tree Expand file tree Collapse file tree 2 files changed +46
-2
lines changed Expand file tree Collapse file tree 2 files changed +46
-2
lines changed Original file line number Diff line number Diff line change 2020 "setup" : " npm install && npm run validate -s" ,
2121 "test" : " kcd-scripts test" ,
2222 "test:update" : " npm test -- --updateSnapshot --coverage" ,
23- "typecheck" : " kcd-scripts typecheck --build types " ,
23+ "typecheck" : " tsc --project tsconfig.json " ,
2424 "validate" : " kcd-scripts validate"
2525 },
2626 "files" : [
6060 "react" : " ^19.0.0" ,
6161 "react-dom" : " ^19.0.0" ,
6262 "rimraf" : " ^3.0.2" ,
63- "typescript" : " ^4.1.2 "
63+ "typescript" : " ^5.9.3 "
6464 },
6565 "peerDependencies" : {
6666 "@testing-library/dom" : " ^10.0.0" ,
Original file line number Diff line number Diff line change 1+ {
2+ // Visit https://aka.ms/tsconfig to read more about this file
3+ "compilerOptions" : {
4+ // File Layout
5+ // "rootDir": "./src",
6+ // "outDir": "./dist",
7+
8+ // Environment Settings
9+ // See also https://aka.ms/tsconfig/module
10+ "module" : " nodenext" ,
11+ "target" : " esnext" ,
12+ // For nodejs:
13+ "lib" : [" esnext" , " DOM" ],
14+ "types" : [" node" ],
15+
16+ // Other Outputs
17+ "sourceMap" : true ,
18+ "declaration" : true ,
19+ "declarationMap" : true ,
20+
21+ // Stricter Typechecking Options
22+ "noUncheckedIndexedAccess" : true ,
23+ "exactOptionalPropertyTypes" : true ,
24+
25+ // Style Options
26+ // "noImplicitReturns": true,
27+ // "noImplicitOverride": true,
28+ // "noUnusedLocals": true,
29+ // "noUnusedParameters": true,
30+ // "noFallthroughCasesInSwitch": true,
31+ // "noPropertyAccessFromIndexSignature": true,
32+
33+ "strict" : true ,
34+ "jsx" : " react-jsx" ,
35+ "verbatimModuleSyntax" : false ,
36+ "isolatedModules" : true ,
37+ "noUncheckedSideEffectImports" : true ,
38+ "moduleDetection" : " force" ,
39+ "skipLibCheck" : false ,
40+
41+ "noEmit" : true
42+ },
43+ "include" : [" types" ]
44+ }
You can’t perform that action at this time.
0 commit comments