Skip to content

Commit 411b4b1

Browse files
committed
Update package-lock.json files for 0.16.0
1 parent 69f2e2a commit 411b4b1

File tree

15 files changed

+158
-143
lines changed

15 files changed

+158
-143
lines changed

examples/hackathon-submissions/package-lock.json

+11-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/streaming/package-lock.json

+11-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/thoughts/package-lock.json

+20-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/thoughts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"prisma": "5.19.1",
1515
"typescript": "^5.1.0",
1616
"vite": "^4.3.9",
17-
"wasp-config": "file:../../../../../.local/share/wasp-lang/0.15.0/data/packages/wasp-config"
17+
"wasp-config": "file:../../../../../.local/share/wasp-lang/0.16.0-rc2/data/packages/wasp-config"
1818
}
1919
}

examples/thoughts/tsconfig.json

+4-45
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,7 @@
1-
// =============================== IMPORTANT =================================
2-
// This file is mainly used for Wasp IDE support.
3-
//
4-
// Wasp will compile your code with slightly different (less strict) compilerOptions.
5-
// You can increase the configuration's strictness (e.g., by adding
6-
// "noUncheckedIndexedAccess": true), but you shouldn't reduce it (e.g., by
7-
// adding "strict": false). Just keep in mind that this will only affect your
8-
// IDE support, not the actual compilation.
9-
//
10-
// Full TypeScript configurability is coming very soon :)
111
{
12-
"compilerOptions": {
13-
"module": "esnext",
14-
// Needed because this is used as a project reference.
15-
"composite": true,
16-
"target": "esnext",
17-
// We're bundling all code in the end so this is the most appropriate option,
18-
// it's also important for autocomplete to work properly.
19-
"moduleResolution": "bundler",
20-
// JSX support
21-
"jsx": "preserve",
22-
"strict": true,
23-
// Allow default imports.
24-
"esModuleInterop": true,
25-
"lib": [
26-
"dom",
27-
"dom.iterable",
28-
"esnext"
29-
],
30-
"skipLibCheck": true,
31-
"allowJs": true,
32-
"typeRoots": [
33-
// This is needed to properly support Vitest testing with jest-dom matchers.
34-
// Types for jest-dom are not recognized automatically and Typescript complains
35-
// about missing types e.g. when using `toBeInTheDocument` and other matchers.
36-
"node_modules/@testing-library",
37-
// Specifying type roots overrides the default behavior of looking at the
38-
// node_modules/@types folder so we had to list it explicitly.
39-
// Source 1: https://www.typescriptlang.org/tsconfig#typeRoots
40-
// Source 2: https://github.com/testing-library/jest-dom/issues/546#issuecomment-1889884843
41-
"node_modules/@types"
42-
],
43-
"outDir": ".wasp/out/user"
44-
},
45-
"include": [
46-
"src"
2+
"files": [],
3+
"references": [
4+
{ "path": "./tsconfig.src.json" },
5+
{ "path": "./tsconfig.wasp.json" }
476
]
487
}

examples/thoughts/tsconfig.src.json

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
// =============================== IMPORTANT =================================
2+
// This file is mainly used for Wasp IDE support.
23
//
3-
// This file is only used for Wasp IDE support. You can change it to configure
4-
// your IDE checks, but none of these options will affect the TypeScript
5-
// compiler. Proper TS compiler configuration in Wasp is coming soon :)
4+
// Wasp will compile your code with slightly different (less strict) compilerOptions.
5+
// You can increase the configuration's strictness (e.g., by adding
6+
// "noUncheckedIndexedAccess": true), but you shouldn't reduce it (e.g., by
7+
// adding "strict": false). Just keep in mind that this will only affect your
8+
// IDE support, not the actual compilation.
9+
//
10+
// Full TypeScript configurability is coming very soon :)
611
{
712
"compilerOptions": {
813
"module": "esnext",
14+
// Needed because this is used as a project reference.
15+
"composite": true,
916
"target": "esnext",
1017
// We're bundling all code in the end so this is the most appropriate option,
1118
// it's also important for autocomplete to work properly.
@@ -20,6 +27,7 @@
2027
"dom.iterable",
2128
"esnext"
2229
],
30+
"skipLibCheck": true,
2331
"allowJs": true,
2432
"typeRoots": [
2533
// This is needed to properly support Vitest testing with jest-dom matchers.
@@ -32,11 +40,9 @@
3240
// Source 2: https://github.com/testing-library/jest-dom/issues/546#issuecomment-1889884843
3341
"node_modules/@types"
3442
],
35-
// Since this TS config is used only for IDE support and not for
36-
// compilation, the following directory doesn't exist. We need to specify
37-
// it to prevent this error:
38-
// https://stackoverflow.com/questions/42609768/typescript-error-cannot-write-file-because-it-would-overwrite-input-file
39-
"outDir": ".wasp/phantom"
43+
"outDir": ".wasp/out/user"
4044
},
41-
"include": ["src"]
45+
"include": [
46+
"src"
47+
]
4248
}

examples/todo-typescript/package-lock.json

+11-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/tutorials/TodoApp/package-lock.json

+11-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/tutorials/TodoAppTs/package-lock.json

+11-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)