mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-14 08:58:02 -05:00
29 lines
781 B
JSON
29 lines
781 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["esnext"],
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"incremental": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": ["./packages/@types", "./node_modules/@types"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/dist"]
|
|
}
|