2022-06-19 00:25:21 +00:00
|
|
|
{
|
|
|
|
"extends": "../tsconfig.base.json" /* Path to base configuration file to inherit from. Requires TypeScript version 2.1 or later. */,
|
|
|
|
"include": [
|
2024-02-15 22:01:22 +00:00
|
|
|
".",
|
2023-01-29 15:58:33 +00:00
|
|
|
"../shared/"
|
2022-06-19 00:25:21 +00:00
|
|
|
] /* 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. */,
|
|
|
|
"files": [
|
|
|
|
"../babel.config.cjs",
|
|
|
|
"../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. */,
|
|
|
|
"ts-node": {
|
|
|
|
"files": true
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"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 */
|
2023-01-29 14:53:59 +00:00
|
|
|
} /* Instructs the TypeScript compiler how to compile .ts files. */
|
2022-06-19 00:25:21 +00:00
|
|
|
}
|