-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 910 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"moduleResolution": "Node",
/* Modules */
"module": "commonjs" /* Specify what module code is generated. */,
"esModuleInterop": true,
/* Emit */
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"outDir": "dist" /* Specify an output folder for all emitted files. */,
/* Type Checking */
"strict": true /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */,
"allowJs": true,
"resolveJsonModule": true,
},
"include": ["src/**/*.ts", "test/**/*.ts", "./package.json"],
"exclude": ["node_modules/**/*", "src/client/**/*"]
}