FiveM_Snippets/tsconfig.json

16 lines
343 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "out",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"types": ["node", "vscode"]
},
"include": ["src"],
"exclude": ["out"]
}