-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (18 loc) · 807 Bytes
/
tsconfig.json
File metadata and controls
19 lines (18 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "ES6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"declaration": true,
"moduleResolution": "node",
/* Modules */
"module": "ES6", /* Specify what module code is generated. */
"outDir": "./dist/esm",
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
"isolatedModules": true,
/* Type Checking */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["./src/**/*.ts"],
"exclude": ["./node_modules", "./dist"]
}