-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
23 lines (23 loc) · 1.17 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
{
/* Visit https://aka.ms/tsconfig to read more about this file */
"compilerOptions": {
"lib": [
"es5",
"es6",
"ES2020",
"DOM"
],
"target": "ES2020", // Set the JavaScript language version for emitted JavaScript
"module": "commonjs", // Specify what module code is generated.
"rootDir": "./", // Specify the root folder within your source files.
"esModuleInterop": true, // Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility.
"moduleResolution": "node",
"outDir": "./build", // Specify an output folder for all emitted files.
"emitDecoratorMetadata": true, // Emit design-type metadata for decorated declarations in source.
"experimentalDecorators": true, // Enable experimental support for decorators.
"strict": true, // Enable all strict type-checking options.
"sourceMap": true
},
"include": ["src/**/*.ts", "server.ts"],
"exclude": ["node_modules"]
}