mirror of
https://github.com/HackPlan/polaris-react.git
synced 2026-01-12 22:44:36 +08:00
* 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
30 lines
695 B
JSON
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/**/*"]
|
|
}
|