Files
GDevelop/GDJS/tsconfig.json
T
Florian Rival 61e8e95d5b Add typing for PIXI in GDJS Runtime
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
2020-07-25 18:56:38 +01:00

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"
]
}