forked from accesslayerorg/accesslayer-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 667 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (23 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"ignoreDeprecations": "5.0",
"target": "es2020",
"module": "commonjs",
"lib": ["es2020", "dom"],
"allowJs": true,
"outDir": "dist",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@prisma/client": ["./node_modules/.prisma/client/index.d.ts"]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": false, // Disable TS unused locals check
"noUnusedParameters": false // Disable TS unused params check
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}