forked from kenneth-gray/data-mocks-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
24 lines (24 loc) · 799 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
{
"compilerOptions": {
// Allow default imports from modules with no default export.
"allowSyntheticDefaultImports": true,
// Target latest version of ECMAScript.
"target": "ESNext",
// Search under node_modules for non-relative imports.
"moduleResolution": "node",
// Enable strictest settings like strictNullChecks & noImplicitAny.
"strict": true,
// Import non-ES modules as default imports.
"esModuleInterop": true,
// Specify where to look for types.
"typeRoots": ["./@types", "./node_modules/@types"],
// Report errors on unused locals.
"noUnusedLocals": true,
// Report errors on unused parameters.
"noUnusedParameters": true,
"outDir": "lib",
"module": "commonjs",
"declaration": true
},
"include": ["src"]
}