mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
28 lines
658 B
JSON
28 lines
658 B
JSON
|
{
|
||
|
"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",
|
||
|
"outDir": "out",
|
||
|
"incremental": true,
|
||
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
|
||
|
"declaration": true
|
||
|
}
|
||
|
}
|