2022-09-14 13:50:32 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"module": "CommonJS",
|
2022-09-17 16:06:38 +02:00
|
|
|
"types": ["@types/node", "@citizenfx/client", "@citizenfx/server"],
|
2022-09-14 13:50:32 +02:00
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"allowJs": false,
|
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"experimentalDecorators": true,
|
2023-09-16 10:37:14 +02:00
|
|
|
"noImplicitAny": true
|
2022-09-14 13:50:32 +02:00
|
|
|
},
|
2022-09-17 16:06:38 +02:00
|
|
|
"include": ["client", "server", "shared"],
|
2022-09-14 13:50:32 +02:00
|
|
|
"exclude": ["**/node_modules"]
|
|
|
|
|
}
|