-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathtsconfig.json
File metadata and controls
35 lines (35 loc) · 1.01 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
33
34
35
{
"include": ["src/**/*.ts", "**/*.json"],
"compilerOptions": {
"outDir": "dist",
"target": "es2022",
"module": "commonjs",
"baseUrl": "./src",
"paths": {
"@lib/*": ["lib/*"],
"@app/controllers": ["controllers"],
"@app/controllers/*": ["controllers/*"],
"@app/services": ["services"],
"@app/services/*": ["services/*"],
"@app/models": ["models"],
"@app/models/*": ["models/*"],
"@app/utils": ["utils"],
"@app/utils/*": ["utils/*"],
"@app/constants": ["constants"],
"@app/db": ["db"],
"@app/types": ["types"],
"@scraping": ["scraping"],
"@scraping/*": ["scraping/*"],
"@config": ["config"]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": ["es2015", "ES2016", "ES2017", "ES2018", "dom"]
}
}