ily.li/tsconfig.json

20 lines
321 B
JSON
Raw Normal View History

2020-04-23 14:55:58 +02:00
{
"compilerOptions": {
"module": "CommonJS",
"esModuleInterop": true,
"outDir": "dist",
"target": "ES6",
"strict": true,
"lib": [
2020-09-23 13:30:48 +02:00
"es2020",
"DOM"
2020-04-23 14:55:58 +02:00
],
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"src/**/*",
"node_modules/wms-core/types"
2020-04-23 14:55:58 +02:00
]
}