generated from hppRC/gatsby-starter-hpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 795 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
//jsx: if you do something after transcompiling (Babel etc.), you should set "preserve"
"jsx": "preserve",
"lib": ["dom", "es2015", "es2017"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noEmit": true,
"allowJs": true,
"sourceMap": true,
"skipLibCheck": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"baseUrl": "./",
"paths": { "*": ["types/*"], "src/*": ["src/*"], "types/*": ["types/*"] },
"typeRoots": ["types", "node_modules/@types"]
},
"exclude": ["node_modules", "public", ".cache"]
}