-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
17 lines (17 loc) · 1003 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"extends": "./tsconfig.base.json" /* Path to base configuration file to inherit from. Requires TypeScript version 2.1 or later. */,
"files": [
"./webpack.config.ts",
"./babel.config.cjs"
] /* 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. */,
// "exclude": [],
"references": [
{"path": "./client"},
{"path": "./server"},
{"path": "./shared"}
] /* Referenced projects. Requires TypeScript version 3.0 or later. */,
"compilerOptions": {
// 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. */
}