2022-02-17 18:09:57 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
2022-02-22 12:02:56 +01:00
|
|
|
"target": "es5",
|
2022-02-17 18:09:57 +01:00
|
|
|
"downlevelIteration": true,
|
2022-02-22 12:02:56 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitThis": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
2022-04-12 14:21:19 +02:00
|
|
|
//"baseUrl": ".",
|
|
|
|
//"paths": {},
|
2022-02-22 12:02:56 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-02-18 10:26:36 +01:00
|
|
|
"skipLibCheck": true
|
2022-02-17 18:09:57 +01:00
|
|
|
}
|
2022-04-12 14:21:19 +02:00
|
|
|
}
|