Files
GDevelop/GDJS/tsconfig.json
T
2020-03-08 23:34:53 +00:00

27 lines
619 B
JSON

{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true
},
"include": [
"Runtime/**/*",
"../Extensions/**/*.js",
"tests/tests/**/*.js",
"tests/tests-utils/**/*.js",
"tests/benchmarks/**/*.js"
],
"exclude": [
"Runtime/Cocos2d",
"Runtime/Cordova",
"Runtime/Electron",
"Runtime/FacebookInstantGames",
"Runtime/libs/CocoonJS",
"../Extensions/Effects/pixi-filters/filter-alpha.js"
]
}