refdb/tsconfig.json

27 lines
1.4 KiB
JSON
Raw Normal View History

2024-01-05 19:36:16 +00:00
{
"compilerOptions": {
2024-01-07 18:01:58 +00:00
"target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
2024-01-07 01:17:23 +00:00
"lib": [
2024-01-07 18:01:58 +00:00
"es6",
"es7",
2024-01-07 01:17:23 +00:00
], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
2024-01-07 18:01:58 +00:00
"module": "ES6", /* Specify what module code is generated. */
2024-01-07 01:17:23 +00:00
"rootDir": "./src", /* Specify the root folder within your source files. */
"resolveJsonModule": true, /* Enable importing .json files. */
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these 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. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
2024-01-07 18:01:58 +00:00
"strict": true, /* Enable all strict type-checking options. */
2024-01-07 01:17:23 +00:00
"noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
2024-01-07 18:01:58 +00:00
"skipLibCheck": false, /* Skip type checking all .d.ts files. */
"moduleResolution": "Node",
2024-01-05 19:36:16 +00:00
},
2024-01-07 01:17:23 +00:00
"include": [
2024-01-07 18:01:58 +00:00
"./src/**/*.ts",
2024-01-07 01:17:23 +00:00
"./domain.d.ts"
],
"exclude": [
"node_modules"
],
}