27 lines
616 B
JSON
27 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "es2015",
|
|
"jsx": "react",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"sourceMap": true
|
|
},
|
|
"filesGlob": [
|
|
"typings/index.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"index.android.js",
|
|
"index.ios.js",
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"compileOnSave": false
|
|
}
|