-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 1.55 KB
/
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
{
"compilerOptions": {
"target": "es6" /* Target es6 JavaScript version */,
"module": "commonjs" /* Use commonjs module system */,
"outDir": "./dist" /* Output directory for compiled files */,
"rootDirs": ["./src", "./strategies"] /* Root directory of your source files */,
"esModuleInterop": true /* Allows default imports from modules with no default export */,
"forceConsistentCasingInFileNames": true /* Avoids issues with case-insensitive filesystems */,
"strict": true /* Enable all strict type-checking options */,
"moduleResolution": "node" /* Module resolution strategy */,
"resolveJsonModule": true /* Allow importing .json files */,
"sourceMap": true /* Generates corresponding .map file */,
"declaration": true /* Generates corresponding .d.ts file */,
"removeComments": false /* Preserve comments in the output */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type */,
"strictNullChecks": true /* Enable strict null checks */,
"strictFunctionTypes": true /* Enable strict checking of function types */,
"skipLibCheck": true /* Skip type checking of declaration files */,
"lib": ["es6", "dom"] /* Specify library files to be included in the compilation */,
"baseUrl": "." /* Base directory to resolve non-relative module names */,
"paths": {
/* Paths to map runtime paths to compile-time paths */ "*": ["node_modules/*", "src/types/*"]
}
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts", "strategies/**/*.ts", "main.ts"]
}