mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-06-17 13:31:09 +00:00
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.
12 lines
285 B
JSON
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"]
|
|
}
|