-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
57 lines (57 loc) · 1.65 KB
/
Copy pathtsconfig.json
File metadata and controls
57 lines (57 loc) · 1.65 KB
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
48
49
50
51
52
53
54
55
56
57
{
"compilerOptions": {
"target": "ES6", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./src", // Specify the root directory of input files
"resolveJsonModule": true,
"noImplicitAny": false,
"jsx": "react-jsx", // Use this for React 17+ projects (use "react" if using older React versions)
"types": [
"node", // Include Node.js types if you're using Node.js in your project
"react" // Include React types
],
"baseUrl": "./src",
"paths": {
"@/*": [
"*"
],
"@/smartcontract-builder": [
"smartcontract-builder/*"
],
"@/AImarketplace": [
"AImarketplace/*"
],
"@/config": [
"config/*"
],
"@/api-key": [
"api-key/*"
],
"@/lib": [
"lib/*"
],
"@/assets": [
"assets/*"
]
},
"typeRoots": [
"src/@types", // Custom type declarations in this folder
"./node_modules/@types" // Node modules type definitions
]
},
"ts-node": {
"files": true
},
"include": [
"src/**/*"
], // Specify the files to include
"exclude": [
"node_modules"
] // Specify files to exclude
}