forked from allenheltondev/serverless-lambda-log-management
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
50 lines (50 loc) · 1.08 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
41
42
43
44
45
46
47
48
49
50
{
"include": [
"stacks",
"./src/**/*.ts",
"./src/**/*.json",
"./vitest.config.ts",
"sst.config.ts"
],
"exclude": [
"./vi.config.js",
"node_modules/**/*",
"./build/**/*"
],
"compilerOptions": {
"allowJs": true,
"baseUrl": "src",
"checkJs": true,
"declarationMap": false,
"declaration": false,
"emitDeclarationOnly": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"inlineSourceMap": false,
"inlineSources": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"outDir": "./.build",
"paths": {
"@/*": [
"main/*"
]
},
"module": "ES2022",
"moduleResolution": "Node",
"target": "ES2022",
"preserveConstEnums": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"types": [
"vitest/globals"
]
}
}