We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef21a8 commit 15de3b3Copy full SHA for 15de3b3
starter-vite-ts/tsconfig.json
@@ -0,0 +1,23 @@
1
+{
2
+ "compilerOptions": {
3
+ "lib": ["dom", "es2018", "esnext.array"],
4
+ "alwaysStrict": true,
5
+ "experimentalDecorators": true,
6
+ "allowSyntheticDefaultImports": true,
7
+ "allowUnreachableCode": false,
8
+ "declaration": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "noImplicitAny": false,
11
+ "noImplicitOverride": true,
12
+ "baseUrl": ".",
13
+ "pretty": true,
14
+ "module": "esnext",
15
+ "moduleResolution": "node",
16
+ "resolveJsonModule": true,
17
+ "sourceMap": true,
18
+ "target": "ES6",
19
+ "noImplicitReturns": true,
20
+ "noUnusedLocals": true,
21
+ "noUnusedParameters": false
22
+ }
23
+}
0 commit comments