-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
40 lines (32 loc) · 2.04 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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"lib": ["es5", "es6"],
"target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
"emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
"module": "CommonJS", /* Specify what module code is generated. */
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
"outDir": "./build", /* Specify an output folder for all emitted files. */
"moduleResolution": "node",
"removeComments": true, /* Disable emitting comments. */
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
"strict": true, /* Enable all strict type-checking options. */
"strictPropertyInitialization": false, /* Check for class properties that are declared but not set in the constructor. */
/* Completeness */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"baseUrl": "./",
"paths": {
/* Assign Tenshi Library paths */
"@TenshiJS/*": ["tenshi/*"],
/* Set project paths*/
"@index/*": ["src/*"],
"@modules/*": ["src/modules/*"],
"@templates/*": ["src/templates/*"],
"@entity/*": ["src/entity/*"],
"@data/*": ["src/data/json/*"],
"@utils/*": ["src/utils/*"]
},
}
}