forked from open-gsd/gsd-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
22 lines (22 loc) · 793 Bytes
/
Copy pathtsconfig.build.json
File metadata and controls
22 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"//": "ADR-457 build-at-publish: compile TS runtime sources in src/ to gitignored .cjs artifacts under gsd-core/bin/lib/. Source uses the .cts extension so tsc emits .cjs natively. As modules migrate, they move from hand-written bin/lib/*.cjs into src/*.cts here.",
"compilerOptions": {
"rootDir": "src",
"outDir": "gsd-core/bin/lib",
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "ES2022",
"lib": ["ES2022"],
"types": ["node"],
"strict": true,
"declaration": false,
"sourceMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": true,
"skipLibCheck": true,
"incremental": true,
"tsBuildInfoFile": "tsconfig.build.tsbuildinfo"
},
"include": ["src/**/*.cts"]
}