mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-07-05 11:00:53 +00:00
Merge pull request #80 from remcohaszing/tsconfig-fixes
Do some tsconfig cleanups
This commit is contained in:
commit
bdfa1ef4e7
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