Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit 58b7c65

Browse files
authored
[shipit-0224] add strict null checks to tsconfig (#67)
1 parent 98c81c7 commit 58b7c65

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

tsconfig.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
2-
"compilerOptions": {
3-
"target": "es2020",
4-
"module": "commonjs",
5-
"lib": ["dom", "es6"],
6-
"outDir": "dist",
7-
"rootDir": "src",
8-
"removeComments": true,
9-
"esModuleInterop": true,
10-
"inlineSourceMap": true,
11-
"noEmitOnError": true
12-
},
13-
"exclude": ["node_modules"],
14-
"include": ["src/**/*.ts", "src/config"]
15-
}
2+
"compilerOptions": {
3+
"target": "es2020",
4+
"module": "commonjs",
5+
"lib": ["dom", "es6"],
6+
"outDir": "dist",
7+
"rootDir": "src",
8+
"removeComments": true,
9+
"esModuleInterop": true,
10+
"inlineSourceMap": true,
11+
"noEmitOnError": true,
12+
"strictNullChecks": true
13+
},
14+
"exclude": ["node_modules"],
15+
"include": ["src/**/*.ts", "src/config"]
16+
}

0 commit comments

Comments
 (0)