2024-03-27 11:08:52 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
// required
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "Roact.createElement",
|
|
|
|
"jsxFragmentFactory": "Roact.createFragment",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"noLib": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"strict": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"typeRoots": ["node_modules/@rbxts"],
|
|
|
|
|
|
|
|
// configurable
|
|
|
|
"rootDir": "src",
|
2024-03-29 16:55:57 +00:00
|
|
|
"outDir": "out/rbxts",
|
2024-03-27 11:08:52 +00:00
|
|
|
"incremental": true,
|
|
|
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
|
|
|
|
"declaration": true
|
|
|
|
}
|
|
|
|
}
|