mirror of
https://github.com/mgerb/react-starter
synced 2026-01-08 08:02:49 +00:00
39 lines
745 B
JSON
39 lines
745 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": false,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"alwaysStrict": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./@types"
|
|
]
|
|
},
|
|
"filesGlob": [
|
|
"typings/index.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"include": [
|
|
"app"
|
|
],
|
|
"exclude": [
|
|
"android",
|
|
"ios",
|
|
"build",
|
|
"node_modules"
|
|
],
|
|
"compileOnSave": false
|
|
}
|