-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
24 lines (23 loc) · 969 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
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES6" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"jsx": "react" /* Specify what JSX code is generated. */,
// "module": "commonjs" /* Specify what module code is generated. */,
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"removeComments": true /* Disable emitting comments. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": {
"*": ["node_modules/*", "frontend/*", "backend/*", "backend/controllers", "backend/models", "backend/routers"] // Modify this to match your project structure
}
},
"exclude": ["node_modules"],
"typeRoots": [
"./typings",
"./node_modules/@types/"
]
}