mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-24 12:21:53 +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": {
|
"compilerOptions": {
|
||||||
"alwaysStrict": true,
|
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"downlevelIteration": true,
|
"downlevelIteration": true,
|
||||||
|
"lib": ["dom", "es2017"],
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"lib": ["dom", "es2017"],
|
"noEmit": true,
|
||||||
"outDir": "./out/esm",
|
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"target": "es6",
|
"target": "es6",
|
||||||
"types": []
|
"types": []
|
||||||
},
|
}
|
||||||
"exclude": ["node_modules", "out", "lib", "test"]
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue