Files
react-godot-renderer/packages/react-godot-renderer/tsconfig.json
Julien Valverdé 54c6466127
Some checks failed
Lint / lint (push) Failing after 9s
Add Component.fromScene
2026-01-02 03:24:30 +01:00

36 lines
830 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "NodeNext",
"moduleDetection": "force",
"jsx": "react-jsx",
// "allowJs": true,
// Bundler mode
"moduleResolution": "NodeNext",
// "allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// "noEmit": true,
"typeRoots": ["./node_modules/@types", "./typings"],
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Build
"outDir": "./dist",
"declaration": true,
"sourceMap": true
},
"include": ["./src", "./typings", "./gen"]
}