mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-19 22:41:39 +00:00
It was already broken. Also the npm ecosystem is moving towards ESM only. This package should be a part of that.
16 lines
386 B
JSON
16 lines
386 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "es2016"],
|
|
"outDir": "./out/esm",
|
|
"sourceMap": true,
|
|
"target": "es6",
|
|
"types": []
|
|
},
|
|
"exclude": ["node_modules", "out", "lib", "test"]
|
|
}
|