Files
Aconit/tsconfig.json

45 lines
981 B
JSON
Raw Normal View History

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