ol-layerswitcher/tsconfig.json
Matt Walker ee8d691e59 Have tsc output es6 and let rollup/ babel transpile
Produces results much closer to current plain js output
2020-10-26 19:39:11 +00:00

14 lines
250 B
JSON

{
"compilerOptions": {
"declaration": true,
"declarationDir": "./dist",
"allowJs": true,
"baseUrl": "./",
"outDir": "./tmp",
"target": "es6",
"module": "es6",
"lib": ["esnext", "dom"]
},
"include": ["./src/*"]
}