-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
24 lines (24 loc) · 1.17 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
// See https://www.typescriptlang.org/tsconfig for more information and
// https://github.com/tsconfig/bases/blob/main/README.md for a list of tsconfig bases.
// "extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "es2015",
"moduleResolution": "bundler", // this is to allow resolution of modules with suffixes like .ts
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": true,
"types": ["vitest/globals"]
// OPTIONAL
// These are options I tend to turn on in my projects, but are not required.
// "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */,
// "jsx": "preserve", /* Specify what JSX code is generated. */
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules"]
}