-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·25 lines (22 loc) · 868 Bytes
/
tsconfig.json
File metadata and controls
executable file
·25 lines (22 loc) · 868 Bytes
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
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"allowJs": true,
"outDir": "./dist",
"strictPropertyInitialization": false,
// "baseUrl": "./src",
// "paths": {
// "@modules": ["modules/*"],
// "@shared": ["shared/*"],
// "@config": ["config/*"],
// "@error": ["error/*"],
// },
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"]
}