thelounge/src/tsconfig.json

26 lines
1.6 KiB
JSON
Raw Normal View History

2022-05-02 07:56:38 +02:00
{
"extends": "../tsconfig.base.json" /* Path to base configuration file to inherit from. Requires TypeScript version 2.1 or later. */,
"include": [
2022-05-15 00:18:06 +02:00
"**/*",
"../client/js/helpers/ircmessageparser/*.ts"
] /* Specifies a list of glob patterns that match files to be included in compilation. If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. Requires TypeScript version 2.0 or later. */,
2022-05-03 03:32:20 +02:00
"files": [
"../client/js/constants.ts",
2022-05-15 00:18:06 +02:00
"../babel.config.cjs",
2022-05-06 21:41:13 +02:00
"../defaults/config.js",
"../package.json",
"../webpack.config.ts"
] /* If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. When a 'files' property is specified, only those files and those specified by 'include' are included. */,
2022-05-05 00:41:57 +02:00
"ts-node": {
"files": true
},
2022-05-02 07:56:38 +02:00
"compilerOptions": {
"outDir": "./dist" /* Specify an output folder for all emitted files. See more: https://www.typescriptlang.org/tsconfig#outDir */,
"noEmit": false /* Disable emitting file from a compilation. See more: https://www.typescriptlang.org/tsconfig#noEmit */,
// TODO: Remove eventually
"noImplicitAny": false /*Enable error reporting for expressions and declarations with an implied any type. See more: https://www.typescriptlang.org/tsconfig#noImplicitAny */
} /* Instructs the TypeScript compiler how to compile .ts files. */
2022-05-02 07:56:38 +02:00
}