-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.38 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"allowJs": true,
"baseUrl": "./",
"checkJs": false /* do not type-check js files */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"isolatedModules": true,
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"moduleResolution": "node",
"noEmit": true,
"noEmitOnError": true,
"noImplicitAny": false /* implicit any ignored while building */,
"paths": {
"~/*": [
"*"
]
},
"resolveJsonModule": true,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"strict": true /* Enable all strict type-checking options. */,
"target": "es6",
"types": [
"node"
],
"incremental": true
},
"include": [
".eslintrc.json",
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"next-env.d.ts"
],
"exclude": [
"node_modules"
]
}