mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
61e8e95d5b
This means that the global object PIXI will now be properly typed and understood by TypeScript. Also fix documentation generation Don't show in changelog
29 lines
735 B
JSON
29 lines
735 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"lib": ["DOM", "ES5", "ScriptHost", "ES2015.Iterable", "ES2015.Promise"]
|
|
},
|
|
"include": [
|
|
"Runtime/**/*",
|
|
"../Extensions/**/*.js",
|
|
"tests/tests/**/*.js",
|
|
"tests/tests-utils/**/*.js",
|
|
"tests/benchmarks/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"Runtime/pixi-renderers/pixi.js",
|
|
"Runtime/Cocos2d",
|
|
"Runtime/Cordova",
|
|
"Runtime/Electron",
|
|
"Runtime/FacebookInstantGames",
|
|
"Runtime/libs/CocoonJS",
|
|
"../Extensions/Effects/pixi-filters/filter-alpha.js"
|
|
]
|
|
}
|