mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 11:35:40 +01:00
18 lines
398 B
JSON
18 lines
398 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"rootDir": "./src",
|
|
"resolveJsonModule": true,
|
|
"newLine": "LF",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"experimentalDecorators": true,
|
|
// to enable mobx decorators
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": ["src/**/*", "../release/monaco.d.ts"]
|
|
}
|