1
0
forked from noxious/server
noxious_server/tsconfig.json
2024-06-06 19:03:55 +02:00

13 lines
1.0 KiB
JSON

{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"outDir": "./dist",
"target": "ES2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"module": "commonjs", /* Specify what module code is generated. */
"typeRoots": ["./node_modules/@types"], /* Specify multiple folders that act like './node_modules/@types'. */
"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 of declaration files. */
}
}