mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
0d6c42a9bf
* Don't show in changelog
26 lines
815 B
JSON
26 lines
815 B
JSON
{
|
|
"//": "This configuration is for scripts only. TypeScript is not used in the newIDE sources (instead, Flow is used).",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"lib": ["DOM", "ES5", "ES2015", "ES2016", "ES2017", "ES2018", "ES2019"],
|
|
"target": "es5",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["**/*.js", "lib.es5.d.ts"]
|
|
}
|