mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
Do some tsconfig cleanups
- `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.
This commit is contained in:
parent
26b0d6ea96
commit
fd9efe8060
1 changed files with 3 additions and 5 deletions
|
|
@ -1,17 +1,15 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"alwaysStrict": true,
|
||||
"declaration": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"downlevelIteration": true,
|
||||
"lib": ["dom", "es2017"],
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"lib": ["dom", "es2017"],
|
||||
"outDir": "./out/esm",
|
||||
"noEmit": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"target": "es6",
|
||||
"types": []
|
||||
},
|
||||
"exclude": ["node_modules", "out", "lib", "test"]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue