one
Version:
One is a new React Framework that makes Vite serve both native and web.
76 lines (74 loc) • 2.12 kB
JavaScript
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all) __defProp(target, name, {
get: all[name],
enumerable: true
});
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
get: () => from[key],
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
});
}
return to;
};
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
value: true
}), mod);
var ensureTsConfig_exports = {};
__export(ensureTsConfig_exports, {
ensureTSConfig: () => ensureTSConfig
});
module.exports = __toCommonJS(ensureTsConfig_exports);
var import_promises = require("fs/promises");
var import_polyfills_server = require("../polyfills-server.native.js");
var import_existsAsync = require("../utils/existsAsync.native.js");
function ensureTSConfig() {
(0, import_existsAsync.existsAsync)("tsconfig.json").then(function (hasTsConfig) {
if (!hasTsConfig) {
console.info(`[one] adding default tsconfig.json. to disable set one/vite { config: { tsConfigPaths: false } }`);
(0, import_promises.writeFile)("tsconfig.json", `{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./*"]
},
"strict": true,
"rootDir": ".",
"module": "Preserve",
// allows react-native style imports without path extensions, for compat with platform-specific files
"moduleResolution": "Bundler",
"preserveSymlinks": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"noImplicitAny": false,
"types": [
"node",
"react",
"vite/client"
],
"lib": [
"dom",
"esnext"
]
},
"exclude": [
"node_modules",
".expo",
"**/test",
"**/dist",
"**/types",
"**/__tests__"
],
}
`);
}
});
}
//# sourceMappingURL=ensureTsConfig.native.js.map