2021-11-15 11:28:39 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
|
|
|
|
|
"compilerOptions": {
|
2023-01-20 09:38:50 +01:00
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
|
"module": "commonjs",
|
2021-11-28 19:40:16 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"target": "es6",
|
2023-01-20 09:38:50 +01:00
|
|
|
"allowJs": true,
|
2021-11-28 19:40:16 +01:00
|
|
|
"sourceMap": true,
|
2021-11-15 11:28:39 +01:00
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-11-28 19:40:16 +01:00
|
|
|
"outDir": "./dist/"
|
2021-11-15 11:28:39 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"include": [
|
2021-11-28 19:40:16 +01:00
|
|
|
"./src/**/*.ts"
|
2021-11-15 11:28:39 +01:00
|
|
|
]
|
|
|
|
|
}
|