2019-02-09 19:09:04 +01:00
|
|
|
{
|
2021-03-15 18:14:19 +01:00
|
|
|
"compilerOptions": {
|
2021-11-02 18:02:21 +01:00
|
|
|
"target": "es2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
|
|
|
"module": "commonjs" /* Specify what module code is generated. */,
|
|
|
|
"rootDir": "./src" /* Specify the root folder within your source files. */,
|
2022-05-31 15:31:36 +02:00
|
|
|
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
2021-11-02 18:02:21 +01:00
|
|
|
"resolveJsonModule": true /* Enable importing .json files */,
|
|
|
|
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
|
|
|
|
"declarationMap": true /* Create sourcemaps for d.ts files. */,
|
|
|
|
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
|
|
|
"removeComments": true /* Disable emitting comments. */,
|
|
|
|
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
|
|
|
|
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
|
|
|
"strict": true /* Enable all strict type-checking options. */,
|
|
|
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
2021-03-15 18:14:19 +01:00
|
|
|
},
|
2021-11-02 18:02:21 +01:00
|
|
|
"include": ["src"]
|
2021-03-15 18:14:19 +01:00
|
|
|
}
|