-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
60 lines (60 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"incremental": true,
"target": "ES2022",
"module": "CommonJS",
"baseUrl": ".",
"types": ["node", "bun"],
"lib": ["ES2022", "DOM"],
"resolveJsonModule": true,
"declaration": true,
"outDir": "./build/out",
"importHelpers": true,
"newLine": "lf",
"noEmitHelpers": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"importsNotUsedAsValues": "remove",
"sourceMap": true,
/* These paths are only used in BlazeBuild scripts, when ran with bun. */
"paths": {
"@buildSrc/*": ["./build_src/src/main/typescript/*"],
"@blazebuild/*": ["./blazebuild/src/main/typescript/*"],
"@main/*": ["./src/main/typescript/*"],
"@framework/*": ["./src/framework/typescript/*"],
"@root/*": ["./*"]
}
},
"include": ["src/main/typescript/types/global/globals.d.ts", "src/**/*.ts"],
"exclude": [
"./backup",
"./tmp",
"./scripts",
"./tests",
"./build",
"./extensions",
"./docs",
"./docs/**",
"./src.bak/**",
"./src.bak",
"./.blaze",
"./blaze",
"./blazebuild",
"./blazebuild/**",
"./build_src",
"./build_src/**",
"./node_modules",
"./storage",
"build.blaze.ts",
"drizzle.config.ts",
"commitlint.config.ts"
]
}