forked from llamafolio/llamafolio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 864 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": "ESNext",
"skipLibCheck": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": false,
"allowJs": true,
"noImplicitThis": false,
"noErrorTruncation": true,
"noUnusedLocals": false,
"types": ["node"],
"noUnusedParameters": false,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"outDir": "./.esbuild",
"paths": {
"@*": ["./src/*"],
"@environment": ["./environment.ts"]
}
},
"include": ["src", "scripts", "test", "*.js", "*.cjs", "*.mjs", "*.ts", "migrations/*.ts"],
"exclude": [".esbuild", "node_modules", "coverage", "dist", "_"]
}