-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (18 loc) · 821 Bytes
/
tsconfig.json
File metadata and controls
18 lines (18 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"include": ["./src/**/*.ts", "./test/**/*.ts"],
"compileOnSave": false,
"compilerOptions": {
/* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"target": "esnext",
/* Specify what module code is generated. */
"module": "ESNext",
/* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "bundler",
/* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. Do not turn it on, otherwise anyone who uses the library is forced to also turn it on. */
"esModuleInterop": false,
/* Enable all strict type-checking options. */
"strict": true,
"sourceMap": true,
"declaration": true
}
}