beachball/tsconfig.json

23 строки
506 B
JSON
Исходник Постоянная ссылка Обычный вид История

2019-06-05 01:02:29 +03:00
{
"compilerOptions": {
"outDir": "./lib",
2023-05-02 08:12:45 +03:00
// compatible with node 14
"target": "ES2020",
2019-06-05 01:02:29 +03:00
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
2019-06-05 01:02:29 +03:00
"strict": true,
2020-04-21 03:09:33 +03:00
"noUnusedLocals": true,
2021-07-29 00:52:44 +03:00
"forceConsistentCasingInFileNames": true,
2019-06-22 09:19:23 +03:00
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
2023-05-02 08:12:45 +03:00
"lib": ["ES2020"],
"types": ["node"]
2019-06-05 01:02:29 +03:00
},
"include": ["src/**/*"]
}