-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
29 lines (24 loc) · 1005 Bytes
/
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
25
26
27
28
29
{
"compilerOptions": {
/* Basic Options */
"target": "es2015",
"declaration": true,
"declarationMap": true,
/* Strict Type-Checking Options */
"strict": true,
"alwaysStrict": true,
/* Additional Checks */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
/* Module Resolution Options */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"outDir": "tmp"
},
"files": [
"src/index.ts",
"src/types.ts",
"src/unit.ts",
]
}