2019-03-30 20:50:04 +01:00
|
|
|
{
|
2024-07-29 16:14:12 +02:00
|
|
|
"extends": ["@tsconfig/strictest"],
|
2019-03-30 20:50:04 +01:00
|
|
|
"compilerOptions": {
|
2024-09-02 09:56:09 +02:00
|
|
|
"target": "ES2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
|
2022-10-18 15:53:43 +02:00
|
|
|
"module": "ES2015" /* Specify what module code is generated. */,
|
|
|
|
"rootDir": "./src" /* Specify the root folder within your source files. */,
|
|
|
|
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
|
|
|
|
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
|
|
|
|
"declarationMap": true /* Create sourcemaps for d.ts files. */,
|
|
|
|
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
|
|
|
|
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
|
|
|
|
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
|
2024-07-29 16:14:12 +02:00
|
|
|
"isolatedModules": false
|
2022-10-18 15:53:43 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
2019-03-30 20:50:04 +01:00
|
|
|
}
|