/[sudobot]/branches/9.x-dev/tsconfig.json
ViewVC logotype

Contents of /branches/9.x-dev/tsconfig.json

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/json
File size: 1712 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 {
2 "compilerOptions": {
3 "incremental": true,
4 "target": "ES2022",
5 "module": "CommonJS",
6 "baseUrl": ".",
7 "types": ["node", "bun"],
8 "lib": ["ES2022", "DOM"],
9 "resolveJsonModule": true,
10 "declaration": true,
11 "outDir": "./build/out",
12 "importHelpers": true,
13 "newLine": "lf",
14 "noEmitHelpers": true,
15 "noEmitOnError": true,
16 "allowSyntheticDefaultImports": true,
17 "esModuleInterop": true,
18 "forceConsistentCasingInFileNames": true,
19 "strict": true,
20 "skipLibCheck": true,
21 "skipDefaultLibCheck": true,
22 "emitDecoratorMetadata": true,
23 "experimentalDecorators": true,
24 "noImplicitOverride": true,
25 "importsNotUsedAsValues": "remove",
26 /* These paths are only used in Blaze build scripts, when ran with bun. */
27 "paths": {
28 "@buildSrc/*": ["./build_src/src/main/typescript/*"],
29 "@blazebuild/*": ["./blazebuild/src/main/typescript/*"],
30 "@main/*": ["./src/main/typescript/*"],
31 "@framework/*": ["./src/framework/typescript/*"],
32 "@root/*": ["./*"]
33 }
34 },
35 "include": ["src/main/typescript/types/global/globals.d.ts", "src/**/*.ts", "build.blaze.ts"],
36 "exclude": [
37 "./backup",
38 "./tmp",
39 "./scripts",
40 "./tests",
41 "./build",
42 "./extensions",
43 "./docs",
44 "./docs/**",
45 "./src.bak/**",
46 "./src.bak",
47 "./.blaze",
48 "./blaze",
49 "./blazebuild",
50 "./blazebuild/**",
51 "./build_src",
52 "./build_src/**",
53 "./node_modules",
54 "./storage"
55 ]
56 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26