1
0
forked from fr/deguapp
deguapp/api/tsconfig.json

19 lines
1.2 KiB
JSON
Raw Normal View History

2024-04-29 21:26:04 +02:00
{
"compilerOptions": {
"target": "es6" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "commonjs" /* Specify what module code is generated. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"strict": true /* Enable all strict type-checking options. */,
"baseUrl": "./" /* Base directory to resolve non-absolute module names. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
2024-05-02 00:09:26 +02:00
"resolveJsonModule": true,
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
2024-04-29 21:26:04 +02:00
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
2024-05-02 00:09:26 +02:00
//"declaration": true, /* Enables experimental support for emitting type metadata for decorators. */
2024-04-29 21:26:04 +02:00
},
2024-05-02 00:09:26 +02:00
"exclude": ["src/tests", "./tests"]
2024-04-29 21:26:04 +02:00
}