mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-09 09:31:25 +00:00
- `alwaysStrict` is unnecessary, because ESM is always strict. - `noEmit` is enabled, because TypeScript isn’t used to bundle the code. - `outDir` was removed, because TypeScrtips isn’t used to bundle the code. - `exclude` was removed, because it’s not necessary.
15 lines
326 B
JSON
15 lines
326 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"lib": ["dom", "es2017"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"target": "es6",
|
|
"types": []
|
|
}
|
|
}
|