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"
|
2020-10-05 13:38:03 +02:00
|
|
|
],
|
|
|
|
"resolveJsonModule": true
|
2020-04-23 14:55:58 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2020-09-03 11:46:00 +02:00
|
|
|
"src/**/*",
|
2020-11-13 10:54:35 +01:00
|
|
|
"node_modules/swaf/types"
|
2020-04-23 14:55:58 +02:00
|
|
|
]
|
2020-10-05 13:38:03 +02:00
|
|
|
}
|