25 lines
585 B
JSON
25 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
// required
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "Roact.createElement",
|
|
"jsxFragmentFactory": "Roact.Fragment",
|
|
"module": "commonjs",
|
|
"moduleResolution": "Node",
|
|
"noLib": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"typeRoots": ["node_modules/@rbxts"],
|
|
|
|
// configurable
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
"baseUrl": "src",
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo"
|
|
}
|
|
}
|