mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-02 01:40:57 +01:00
30 lines
704 B
JSON
30 lines
704 B
JSON
{
|
|
"compilerOptions": {
|
|
// required
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"jsx": "react",
|
|
"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"],
|
|
|
|
// configurable
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "out/tsconfig.tsbuildinfo",
|
|
"declaration": true
|
|
},
|
|
|
|
// exclude build script
|
|
"exclude": ["build.ts"]
|
|
}
|