-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 856 Bytes
/
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
{
"compilerOptions": {
"target": "es5",
"lib": ["ES2015", "DOM"],
"paths": {
"@models/*": ["src/models/*"],
"@controllers/*": ["src/controllers/*"],
"@routes/*": ["src/routes/*"],
"@views/*": ["src/views/*"],
"@utils/*": ["src/utils/*"],
"@app_type": ["typing/app.type.ts"],
"@config/*": ["config/*"],
"@fixture": ["fixtureData/fixture.ts"],
"@tests/*": ["tests/*"]
},
"module": "commonjs",
"baseUrl": ".",
"esModuleInterop": true,
"noEmitOnError": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"typeRoots": ["typing", "./node_modules/@types"],
"rootDirs": ["./src", "./config"],
"outDir": "./dist",
"sourceMap": true,
},
"exclude": ["node_modules", "./scripts"]
}