Files
polaris-react/tsconfig.json
Andre Rocha e6a9c15771 Fix issue where tsx would copy the package.json file where it shouldn't (#1466)
* Fix issue where tsx would copy the package.json file where it shouldn't copy it

* v3.14.1-rc.2

* Remove reference to package.json in tsconfig includes

This file is never imported by any files and its inclusion in the esnext
folder results in npm's files directive not being processed correctly
(i.e. a bunch of files are left out)

* v3.14.1-rc.3
2019-05-14 09:52:05 -04:00

30 lines
695 B
JSON

{
"compilerOptions": {
"baseUrl": "./src",
"rootDir": "./",
"target": "es2017",
"module": "es2015",
"moduleResolution": "node",
"resolveJsonModule": true,
"declaration": true,
"declarationDir": "types",
"jsx": "react-native",
"strictNullChecks": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noEmitHelpers": true,
"importHelpers": true,
"lib": [
"dom",
"dom.iterable",
"es2017",
"esnext.asynciterable",
"scripthost"
]
},
"include": ["./config/typescript/**/*", "./src/**/*"]
}