We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f7e46 commit ec6305cCopy full SHA for ec6305c
tsconfig.json
@@ -2,14 +2,25 @@
2
"compilerOptions": {
3
"target": "es5",
4
"module": "commonjs",
5
+ "baseUrl": ".",
6
+ "outDir": "./temp",
7
+ "noEmitOnError": true,
8
+ "sourceMap": true,
9
"declaration": false,
- "noImplicitAny": true,
- "removeComments": true,
- "noLib": false,
10
"jsx": "react",
- "outDir": "./temp"
11
+ "moduleResolution": "node",
12
+ "experimentalDecorators": true,
13
+ "forceConsistentCasingInFileNames": true,
14
+ "noFallthroughCasesInSwitch": true,
15
+ "noImplicitAny": true,
16
+ "noImplicitReturns": true,
17
+ "noImplicitThis": true,
18
+ "noUnusedLocals": true,
19
+ "noUnusedParameters": true,
20
+ "strictNullChecks": true
21
},
- "files": [
- "app/app.tsx"
22
+ "include": [
23
+ "app/**.ts",
24
+ "app/**.tsx"
25
]
26
}
0 commit comments