elmjs-inspect/tsconfig.json

12 lines
270 B
JSON
Raw Permalink Normal View History

2020-04-04 00:22:32 +03:00
{
"compilerOptions": {
// "target": "ES2019",
2022-05-10 20:11:40 +03:00
"module": "ES6",
2020-04-04 00:22:32 +03:00
"downlevelIteration": true,
2022-05-10 20:11:40 +03:00
"moduleResolution": "node",
2022-08-15 19:10:11 +03:00
"outDir": "bin",
"lib": ["ES2021.String"]
2020-04-04 00:22:32 +03:00
},
2022-08-17 17:32:05 +03:00
"files": ["src/analyze.ts", "src/index.ts"]
}