2021-03-17 03:02:09 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"sourceMap": false,
|
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
2023-01-03 07:04:48 +01:00
|
|
|
"moduleResolution": "Node",
|
2021-07-13 22:34:41 +02:00
|
|
|
"esModuleInterop": true,
|
2021-03-17 03:02:09 +01:00
|
|
|
"importHelpers": true,
|
2021-07-27 23:08:18 +02:00
|
|
|
"isolatedModules": true,
|
2021-03-17 03:02:09 +01:00
|
|
|
"resolveJsonModule": true,
|
2021-07-27 23:08:18 +02:00
|
|
|
"downlevelIteration": true,
|
2021-03-17 03:02:09 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-07-27 23:08:18 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noEmit": true,
|
2023-01-03 07:04:48 +01:00
|
|
|
"target": "ES6",
|
2021-03-17 03:02:09 +01:00
|
|
|
"lib": [
|
2023-01-03 07:04:48 +01:00
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ESNext"
|
2021-07-13 22:34:41 +02:00
|
|
|
],
|
2023-01-03 07:04:48 +01:00
|
|
|
"module": "ES6",
|
2021-07-13 22:34:41 +02:00
|
|
|
"paths": {
|
|
|
|
"mini-signals": [
|
2021-07-27 23:08:18 +02:00
|
|
|
"node_modules/mini-signals/index.js"
|
2021-07-13 22:34:41 +02:00
|
|
|
]
|
|
|
|
},
|
2021-07-27 23:08:18 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
2021-03-17 03:02:09 +01:00
|
|
|
}
|