-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.32 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
46
47
// {
// "compilerOptions": {
// // This is not a complete template; it only
// // shows relevant module-related settings.
// // Be sure to set other important options
// // like `target`, `lib`, and `strict`.
// // Required
// "target": "esnext",
// "module": "esnext",
// "moduleResolution": "bundler",
// "esModuleInterop": true,
// // Consult your bundler’s documentation
// "customConditions": ["module"],
// // Recommended
// "noEmit": true, // or `emitDeclarationOnly`
// "allowImportingTsExtensions": true,
// "allowArbitraryExtensions": true,
// "verbatimModuleSyntax": true, // or `isolatedModules`
// }
// }
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
},
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}