2025-10-15 21:45:59 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
// required
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"jsxFactory": "React.createElement",
|
|
|
|
|
"jsxFragmentFactory": "React.Fragment",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"noLib": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "ESNext",
|
2025-10-26 22:05:57 +01:00
|
|
|
"typeRoots": [
|
|
|
|
|
"node_modules/@rbxts",
|
|
|
|
|
"node_modules/@flamework"
|
|
|
|
|
],
|
2025-10-15 21:45:59 +02:00
|
|
|
// configurable
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"outDir": "out",
|
|
|
|
|
"baseUrl": "src",
|
|
|
|
|
"incremental": true,
|
2025-10-26 22:05:57 +01:00
|
|
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"transform": "rbxts-transformer-flamework",
|
|
|
|
|
"obfuscation": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"transform": "rbxts-transformer-instances"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"transform": "rbxts-transformer-services"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"node_modules/rbxts-transformer-instances"
|
|
|
|
|
]
|
|
|
|
|
}
|