2015-09-15 13:23:36 +02:00
|
|
|
{
|
2018-07-25 16:16:33 +02:00
|
|
|
"compilerOptions": {
|
2020-04-03 23:48:41 +03:00
|
|
|
"jsx": "react",
|
2020-02-07 20:40:04 -05:00
|
|
|
"baseUrl": "public/",
|
2018-07-25 16:16:33 +02:00
|
|
|
"outDir": "public/dist",
|
2020-02-07 20:40:04 -05: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 12:46:59 +02:00
|
|
|
"allowJs": true,
|
2021-11-02 15:23:44 +00:00
|
|
|
"strict": true,
|
2021-09-22 12:15:37 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-06-15 08:59:29 +01:00
|
|
|
"useUnknownInCatchVariables": true,
|
2022-03-04 09:26:25 +01:00
|
|
|
"incremental": true,
|
2023-01-10 03:30:53 -08:00
|
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
2023-07-05 16:24:48 +02:00
|
|
|
"preserveSymlinks": true,
|
|
|
|
"paths": {
|
|
|
|
"@grafana/schema/dist/esm/*": ["../packages/grafana-schema/src/*"]
|
|
|
|
}
|
2018-07-25 16:16:33 +02:00
|
|
|
},
|
2020-02-07 20:40:04 -05:00
|
|
|
"extends": "@grafana/tsconfig/base.json",
|
2020-04-02 13:34:16 +02:00
|
|
|
"include": [
|
|
|
|
"public/app/**/*.ts*",
|
|
|
|
"public/e2e-test/**/*.ts",
|
|
|
|
"public/test/**/*.ts",
|
|
|
|
"public/vendor/**/*.ts",
|
2022-03-31 09:36:04 +02:00
|
|
|
"packages/grafana-data/typings",
|
|
|
|
"packages/grafana-ui/src/types"
|
2023-10-16 17:31:43 +02:00
|
|
|
],
|
|
|
|
"exclude": ["public/app/**/webpack.config.ts"]
|
2018-08-30 08:33:29 +02:00
|
|
|
}
|