2015-09-15 06:23:36 -05:00
|
|
|
{
|
2018-07-25 09:16:33 -05:00
|
|
|
"compilerOptions": {
|
2024-06-25 06:43:47 -05:00
|
|
|
"jsx": "react-jsx",
|
2020-02-07 19:40:04 -06:00
|
|
|
"baseUrl": "public/",
|
2018-07-25 09:16:33 -05:00
|
|
|
"outDir": "public/dist",
|
2020-02-07 19:40:04 -06:00
|
|
|
"rootDirs": ["public/"],
|
Chore: Fix all Typescript strict null errors (#26204)
* Chore: Fix typescript strict null errors
* Added new limit
* Fixed ts issue
* fixed tests
* trying to fix type inference
* Fixing more ts errors
* Revert tsconfig option
* Fix
* Fixed code
* More fixes
* fix tests
* Updated snapshot
* Chore: More ts strict null fixes
* More fixes in some really messed up azure config components
* More fixes, current count: 441
* 419
* More fixes
* Fixed invalid initial state in explore
* Fixing tests
* Fixed tests
* Explore fix
* More fixes
* Progress
* Sub 300
* Now at 218
* Progress
* Update
* Progress
* Updated tests
* at 159
* fixed tests
* Progress
* YAy blow 100! at 94
* 10,9,8,7,6,5,4,3,2,1... lift off
* Fixed tests
* Fixed more type errors
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
2020-07-10 05:46:59 -05:00
|
|
|
"allowJs": true,
|
2021-11-02 10:23:44 -05:00
|
|
|
"strict": true,
|
2021-09-22 14:15:37 -05:00
|
|
|
"resolveJsonModule": true,
|
2022-06-15 02:59:29 -05:00
|
|
|
"useUnknownInCatchVariables": true,
|
2022-03-04 02:26:25 -06:00
|
|
|
"incremental": true,
|
2024-10-31 08:00:32 -05:00
|
|
|
"isolatedModules": true,
|
2023-01-10 05:30:53 -06:00
|
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
2023-07-05 09:24:48 -05:00
|
|
|
"paths": {
|
2024-04-15 10:41:52 -05:00
|
|
|
"@grafana/schema/dist/esm/*": ["../packages/grafana-schema/src/*"]
|
2024-02-09 05:16:40 -06:00
|
|
|
}
|
2018-07-25 09:16:33 -05:00
|
|
|
},
|
2020-02-07 19:40:04 -06:00
|
|
|
"extends": "@grafana/tsconfig/base.json",
|
2020-04-02 06:34:16 -05:00
|
|
|
"include": [
|
|
|
|
"public/app/**/*.ts*",
|
2024-08-14 01:03:00 -05:00
|
|
|
"public/swagger/**/*.ts*",
|
2020-04-02 06:34:16 -05:00
|
|
|
"public/e2e-test/**/*.ts",
|
2024-04-05 11:32:37 -05:00
|
|
|
"public/test/**/*.ts*",
|
2020-04-02 06:34:16 -05:00
|
|
|
"public/vendor/**/*.ts",
|
2022-03-31 02:36:04 -05:00
|
|
|
"packages/grafana-data/typings",
|
2024-02-09 05:16:40 -06:00
|
|
|
"packages/grafana-ui/src/types"
|
2023-10-16 10:31:43 -05:00
|
|
|
],
|
2024-02-09 05:16:40 -06:00
|
|
|
"exclude": ["public/app/**/webpack.config.ts"]
|
2018-08-30 01:33:29 -05:00
|
|
|
}
|