Skip to content

Commit e7c1112

Browse files
committed
feat: Match tsconfig to cheatsheet/tsconfig as example
1 parent 89fd88d commit e7c1112

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
+11-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4+
"rootDir": "src",
45
"outDir": "out",
5-
"rootDir": "src"
6+
"jsx": "react-jsx",
7+
"esModuleInterop": true,
8+
"skipLibCheck": true,
9+
"lib": ["es5", "es6", "dom"]
610
},
711
"references": [],
8-
"include": ["src/**/*.ts", "src/**/*.json", "../../typings/**/*.d.ts"]
12+
"include": [
13+
"src/**/*.ts",
14+
"src/**/*.tsx",
15+
"src/**/*.json",
16+
"../../typings/**/*.d.ts"
17+
]
918
}

0 commit comments

Comments
 (0)