TypeScript/src/tsconfig-base.json
Isabel Duan 52eaa7b02f
Enable --isolatedDeclarations on TS codebase (#59635)
Co-authored-by: Sheetal Nandi <shkamat@microsoft.com>
Co-authored-by: Andrew Branch <andrew@wheream.io>
2024-09-15 18:10:52 -07:00

33 lines
756 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"outDir": "../built/local",
"pretty": true,
"lib": ["es2020"],
"target": "es2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"emitDeclarationOnly": true,
"isolatedDeclarations": true,
"strict": true,
"strictBindCallApply": false,
"useUnknownInCatchVariables": false,
"noImplicitOverride": true,
"skipLibCheck": true,
"alwaysStrict": true,
"preserveConstEnums": true,
"newLine": "lf",
"types": []
}
}