- Remove vestigial experimentalDecorators/emitDecoratorMetadata from all package tsconfigs (no actual decorators in source — flags were from pi-mono vendor copy) - Add @typescript/native-preview for 8-10x faster type checking (measured 4.6x on this repo: tsc 6.5s vs tsgo 1.4s) - Fix tsconfig.extensions.json: remove baseUrl (removed in tsgo/TS7) and use relative paths in paths mappings — compatible with both tsc and tsgo - Add typecheck/typecheck:extensions scripts using tsgo Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
35 lines
643 B
JSON
35 lines
643 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "Node16",
|
|
"lib": [
|
|
"ES2024"
|
|
],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"inlineSourceMap": false,
|
|
"moduleResolution": "Node16",
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": false,
|
|
"useDefineForClassFields": false,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|