generated from aichner/react-mdb-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.04 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
{
"compilerOptions": {
"target": "ES2020",
/**
* Specify module code generation: 'none', 'commonjs', 'amd', 'system',
* 'umd', 'es2015', 'es2020', or 'ESNext'.
*/
"module": "commonjs",
/**
* Generates corresponding '.d.ts' file.
*/
"declaration": true,
/**
* Redirect output structure to the directory.
*/
"outDir": "lib",
/**
* Do not emit comments to output.
*/
"removeComments": true,
/** Enable all strict type-checking options. */
"strict": true,
/**
* Enables emit interoperability between CommonJS and ES Modules
* via creation of namespace objects for all imports.
* Implies 'allowSyntheticDefaultImports'.
*/
"esModuleInterop": true,
/**
* Disallow inconsistently-cased references to the same file.
*/
"forceConsistentCasingInFileNames": true,
/**
* Allow json modules.
*/
"resolveJsonModule": true
},
/**
* The files to not type check.
*/
"exclude": ["node_modules", "build", "lib"]
}