-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
22 lines (20 loc) · 1.01 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
{
"compilerOptions": {
"moduleResolution": "node",
"target": "ESNext",
"module": "CommonJS",
"lib": ["esnext", "dom"],
"allowJs": false, /* Allow javascript files to be compiled. */
//"checkJs": true, /* Report errors in .js files. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"declaration": true,
"esModuleInterop": true,
"strict": true, /* Enable all strict type-checking options. */
"types": ["node", "vitest/globals"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": [ "src/**/*.ts", "test/**/*.ts"]
}