2020-08-04 03:41:09 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-01 04:19:07 +00:00
|
|
|
"noEmit": true,
|
2020-08-04 03:41:09 +00:00
|
|
|
// Target latest version of ECMAScript.
|
|
|
|
"target": "esnext",
|
|
|
|
// Search under node_modules for non-relative imports.
|
|
|
|
"moduleResolution": "node",
|
|
|
|
// Process & infer types from .js files.
|
|
|
|
"allowJs": true,
|
2021-03-01 03:01:22 +00:00
|
|
|
"jsx": "preserve",
|
2020-08-04 03:41:09 +00:00
|
|
|
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
|
|
"strict": true,
|
|
|
|
// Import non-ES modules as default imports.
|
|
|
|
"esModuleInterop": true,
|
2022-04-14 01:46:49 +00:00
|
|
|
// Skip type checking of declaration files because some libraries define two copies of the same type in an inconsistent way
|
|
|
|
"skipLibCheck": true,
|
2020-08-04 03:41:09 +00:00
|
|
|
"module": "esnext",
|
2022-04-14 01:46:49 +00:00
|
|
|
"baseUrl": "client",
|
2020-08-04 03:41:09 +00:00
|
|
|
"paths": {
|
2022-04-14 01:46:49 +00:00
|
|
|
"~/*": [ "*" ]
|
|
|
|
},
|
|
|
|
"rootDir": "client",
|
2023-03-28 17:38:08 +00:00
|
|
|
"typeRoots": [ "./client/typings", "./node_modules/@types" ]
|
2020-08-05 22:02:24 +00:00
|
|
|
},
|
2023-03-28 17:38:08 +00:00
|
|
|
"include": [ "./client/**/*" ]
|
2020-08-04 03:41:09 +00:00
|
|
|
}
|