monaco-yaml/tsconfig.json
Remco Haszing a5a49756be
Remove unused dependencies
Jest, eslint, and typescript-tslint-plugin were installed, but never used. Node
types were used for timers, but this is incorrect, as this code is supposed to
run in the browser.
2021-03-25 17:40:16 +01:00

12 lines
285 B
JSON

{
"compilerOptions": {
"declaration": true,
"forceConsistentCasingInFileNames": true,
"module": "umd",
"moduleResolution": "node",
"lib": ["dom", "es2016"],
"outDir": "./out/amd",
"target": "es6"
},
"exclude": ["node_modules", "out", "lib", "test"]
}