monaco-editor/website/tsconfig.json

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

2023-02-10 12:26:28 +03:00
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
2024-05-02 17:46:43 +03:00
"moduleResolution": "Node",
2023-02-10 12:26:28 +03:00
"strict": true,
"outDir": "dist",
"skipLibCheck": true,
"resolveJsonModule": true,
"newLine": "LF",
"sourceMap": true,
2024-05-02 17:46:43 +03:00
"useDefineForClassFields": false,
"noEmit": true
2023-02-10 12:26:28 +03:00
},
2024-05-02 17:46:43 +03:00
"exclude": ["src/**/*", "./node_modules/monaco-editor/monaco.d.ts"]
2023-02-10 12:26:28 +03:00
}