Files
windmill/typescript-client/tsconfig.json
T
Ruben Fiszel 7c44f1296d add tsdocs
2024-06-21 15:59:06 +02:00

20 lines
711 B
JSON

{
"include": ["src/**/*"],
"compilerOptions": {
"declaration": true,
"rootDir": "src/",
"outDir": "dist",
"target": "ES6" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [
"ES2018",
"DOM"
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
"module": "CommonJS" /* Specify what module code is generated. */,
"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. */
}
}