create-roblox-ts-script
Version:
CLI tool for creating Roblox scripts using TypeScript.
24 lines (23 loc) • 522 B
JSON
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"jsx": "react",
"jsxFactory": "Vide.jsx",
"jsxFragmentFactory": "Vide.Fragment",
"module": "commonjs",
"moduleResolution": "Node",
"moduleDetection": "force",
"noLib": true,
"resolveJsonModule": true,
"strict": true,
"target": "ESNext",
"typeRoots": [
"assets/types",
"node_modules/@rbxts"
],
"rootDir": "src",
"outDir": "out",
"baseUrl": "src"
}
}