You've already forked BattleMovr
mirror of
https://github.com/FullScreenShenanigans/BattleMovr.git
synced 2026-04-28 13:01:58 -07:00
31 lines
777 B
JSON
31 lines
777 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"lib": ["dom", "es2015"],
|
|
"module": "amd",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"target": "es5"
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|