cadl/tsconfig.base.json

25 строки
583 B
JSON
Исходник Обычный вид История

2021-08-25 22:47:06 +03:00
{
"compilerOptions": {
"composite": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"module": "Node16",
"moduleResolution": "Node16",
2021-08-25 22:47:06 +03:00
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"sourceMap": true,
"declarationMap": true,
"strict": true,
"declaration": true,
"stripInternal": true,
"noEmitHelpers": false,
"target": "ES2022",
2021-08-25 22:47:06 +03:00
"types": ["node"],
"lib": ["es2022", "DOM"],
2021-08-25 22:47:06 +03:00
"experimentalDecorators": true,
"newLine": "LF"
}
}