Add tsconfig.json

This commit is contained in:
Alice Gaudon 2020-04-23 14:55:58 +02:00
parent f6e80ce832
commit bef17025b1
1 changed files with 19 additions and 0 deletions

19
tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "CommonJS",
"esModuleInterop": true,
"outDir": "dist",
"target": "ES6",
"strict": true,
"lib": [
"es2020"
],
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"src/**/*",
"node_modules/wms-core"
]
}