forked from shreyan001/backend-socials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 2.05 KB
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 2.05 KB
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
30
31
32
{
"compilerOptions": {
"target": "es2020", /* Specify ECMAScript target version */
"module": "commonjs", /* Specify module code generation */
"rootDir": "./src", /* Specify the root directory of input files */
"outDir": "./dist", /* Redirect output structure to the directory */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules */
"forceConsistentCasingInFileNames": false, /* Disallow inconsistently-cased references to the same file. */
"strict": true, /* Enable all strict type-checking options */
"skipLibCheck": true,
"lib": ["es2020", "dom"],
"allowJs": true,
"checkJs": false, /* Skip type checking of declaration files. */
"resolveJsonModule": true, /* Include modules imported with .json extension */
"moduleResolution": "node", /* Specify module resolution strategy */
// "baseUrl": ".", /* Base directory to resolve non-absolute module names. */
// "paths": { /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "@/*": ["src/*"]
// },
"sourceMap": true, /* Generates corresponding '.map' file. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */
},
"include": [
"src/**/*" /* Glob patterns to include in the compilation */
],
"exclude": [
"node_modules", /* Exclude node_modules directory */
"dist" /* Exclude output directory */
]
}